From patchwork Mon Dec 26 06:29:21 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Qu Wenruo X-Patchwork-Id: 9488527 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 6571160839 for ; Mon, 26 Dec 2016 06:31:01 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 56FAC1FFCA for ; Mon, 26 Dec 2016 06:31:01 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 4A9342022C; Mon, 26 Dec 2016 06:31:01 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id AFDAC1FFCA for ; Mon, 26 Dec 2016 06:30:59 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755155AbcLZGaz (ORCPT ); Mon, 26 Dec 2016 01:30:55 -0500 Received: from cn.fujitsu.com ([222.73.24.84]:26380 "EHLO song.cn.fujitsu.com" rhost-flags-OK-FAIL-OK-OK) by vger.kernel.org with ESMTP id S1751392AbcLZGaU (ORCPT ); Mon, 26 Dec 2016 01:30:20 -0500 X-IronPort-AV: E=Sophos;i="5.20,367,1444665600"; d="scan'208";a="1036572" Received: from unknown (HELO cn.fujitsu.com) ([10.167.250.3]) by song.cn.fujitsu.com with ESMTP; 26 Dec 2016 14:29:47 +0800 Received: from localhost.localdomain (unknown [10.167.226.34]) by cn.fujitsu.com (Postfix) with ESMTP id 041AD41B4BD7 for ; Mon, 26 Dec 2016 14:29:41 +0800 (CST) From: Qu Wenruo To: linux-btrfs@vger.kernel.org Subject: [PATCH v2 01/19] btrfs-progs: raid56: Introduce raid56 header for later recovery usage Date: Mon, 26 Dec 2016 14:29:21 +0800 Message-Id: <20161226062939.5841-2-quwenruo@cn.fujitsu.com> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20161226062939.5841-1-quwenruo@cn.fujitsu.com> References: <20161226062939.5841-1-quwenruo@cn.fujitsu.com> MIME-Version: 1.0 X-yoursite-MailScanner-ID: 041AD41B4BD7.AEE78 X-yoursite-MailScanner: Found to be clean X-yoursite-MailScanner-From: quwenruo@cn.fujitsu.com Sender: linux-btrfs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-btrfs@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Introduce a new header, kernel-lib/raid56.h, for later raid56 works. It contains 2 functions, from original btrfs-progs code: void raid6_gen_syndrome(int disks, size_t bytes, void **ptrs); int raid5_gen_result(int nr_devs, size_t stripe_len, int dest, void **data); Will be expanded later and some part of it(RAID6 recover part) may keep sync with kernel later. Signed-off-by: Qu Wenruo --- Makefile.in | 2 +- disk-io.h | 5 ----- kernel-lib/raid56.h | 28 ++++++++++++++++++++++++++++ volumes.c | 1 + 4 files changed, 30 insertions(+), 6 deletions(-) create mode 100644 kernel-lib/raid56.h diff --git a/Makefile.in b/Makefile.in index 0e3a0a0f..6e009bff 100644 --- a/Makefile.in +++ b/Makefile.in @@ -110,7 +110,7 @@ libbtrfs_objects = send-stream.o send-utils.o kernel-lib/rbtree.o btrfs-list.o \ uuid-tree.o utils-lib.o rbtree-utils.o libbtrfs_headers = send-stream.h send-utils.h send.h kernel-lib/rbtree.h btrfs-list.h \ kernel-lib/crc32c.h kernel-lib/list.h kerncompat.h \ - kernel-lib/radix-tree.h extent-cache.h \ + kernel-lib/radix-tree.h kernel-lib/raid56.h extent-cache.h \ extent_io.h ioctl.h ctree.h btrfsck.h version.h TESTS = fsck-tests.sh convert-tests.sh diff --git a/disk-io.h b/disk-io.h index 1c8387e7..4de9fef7 100644 --- a/disk-io.h +++ b/disk-io.h @@ -196,9 +196,4 @@ int write_tree_block(struct btrfs_trans_handle *trans, struct extent_buffer *eb); int write_and_map_eb(struct btrfs_trans_handle *trans, struct btrfs_root *root, struct extent_buffer *eb); - -/* raid56.c */ -void raid6_gen_syndrome(int disks, size_t bytes, void **ptrs); -int raid5_gen_result(int nr_devs, size_t stripe_len, int dest, void **data); - #endif diff --git a/kernel-lib/raid56.h b/kernel-lib/raid56.h new file mode 100644 index 00000000..7d4f4678 --- /dev/null +++ b/kernel-lib/raid56.h @@ -0,0 +1,28 @@ +/* + * Copyright (C) 2016 Fujitsu. All rights reserved. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public + * License v2 as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public + * License along with this program; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 021110-1307, USA. + */ + +#ifndef _BTRFS_PROGS_RAID56_H +#define _BTRFS_PROGS_RAID56_H +/* + * Headers for RAID5/6 operations. + * Original headers from original RAID5/6 codes, not from kernel header. + */ + +void raid6_gen_syndrome(int disks, size_t bytes, void **ptrs); +int raid5_gen_result(int nr_devs, size_t stripe_len, int dest, void **data); +#endif diff --git a/volumes.c b/volumes.c index a0a85edd..f17bdeed 100644 --- a/volumes.c +++ b/volumes.c @@ -28,6 +28,7 @@ #include "print-tree.h" #include "volumes.h" #include "utils.h" +#include "kernel-lib/raid56.h" struct stripe { struct btrfs_device *dev;