From patchwork Sat Jul 15 09:10:50 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gu Jinxiang X-Patchwork-Id: 9842193 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 156D5602BD for ; Sat, 15 Jul 2017 09:11:45 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 05F5C2844B for ; Sat, 15 Jul 2017 09:11:45 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id EEFBE2846C; Sat, 15 Jul 2017 09:11:44 +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 77A812844B for ; Sat, 15 Jul 2017 09:11:44 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751255AbdGOJLk (ORCPT ); Sat, 15 Jul 2017 05:11:40 -0400 Received: from cn.fujitsu.com ([59.151.112.132]:29344 "EHLO heian.cn.fujitsu.com" rhost-flags-OK-FAIL-OK-FAIL) by vger.kernel.org with ESMTP id S1751247AbdGOJLi (ORCPT ); Sat, 15 Jul 2017 05:11:38 -0400 X-IronPort-AV: E=Sophos;i="5.22,518,1449504000"; d="scan'208";a="21335156" Received: from unknown (HELO cn.fujitsu.com) ([10.167.33.5]) by heian.cn.fujitsu.com with ESMTP; 15 Jul 2017 17:11:33 +0800 Received: from G08CNEXCHPEKD02.g08.fujitsu.local (unknown [10.167.33.83]) by cn.fujitsu.com (Postfix) with ESMTP id CFDBD467021F; Sat, 15 Jul 2017 17:11:36 +0800 (CST) Received: from localhost.localdomain (10.167.226.132) by G08CNEXCHPEKD02.g08.fujitsu.local (10.167.33.89) with Microsoft SMTP Server (TLS) id 14.3.319.2; Sat, 15 Jul 2017 17:11:34 +0800 From: Gu Jinxiang To: CC: Qu Wenruo Subject: [PATCH v5 12/15] btrfs-progs: scrub: Introduce helper to write a full stripe Date: Sat, 15 Jul 2017 17:10:50 +0800 Message-ID: <20170715091053.19725-12-gujx@cn.fujitsu.com> X-Mailer: git-send-email 2.9.4 In-Reply-To: <20170715091053.19725-1-gujx@cn.fujitsu.com> References: <20170715091053.19725-1-gujx@cn.fujitsu.com> MIME-Version: 1.0 X-Originating-IP: [10.167.226.132] X-yoursite-MailScanner-ID: CFDBD467021F.A78AF X-yoursite-MailScanner: Found to be clean X-yoursite-MailScanner-From: gujx@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 From: Qu Wenruo Introduce a internal helper, write_full_stripe() to calculate P/Q and write the whole full stripe. This is useful to recover RAID56 stripes. Signed-off-by: Qu Wenruo Signed-off-by: Gu Jinxiang --- scrub.c | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/scrub.c b/scrub.c index 4d7709f..a4695f4 100644 --- a/scrub.c +++ b/scrub.c @@ -874,3 +874,47 @@ static int recover_from_parities(struct btrfs_fs_info *fs_info, free(ptrs); return ret; } + +/* + * Helper to write a full stripe to disk + * P/Q will be re-calculated. + */ +static int write_full_stripe(struct scrub_full_stripe *fstripe) +{ + void **ptrs; + int nr_stripes = fstripe->nr_stripes; + int stripe_len = BTRFS_STRIPE_LEN; + int i; + int ret = 0; + + ptrs = malloc(sizeof(void *) * fstripe->nr_stripes); + if (!ptrs) + return -ENOMEM; + + for (i = 0; i < fstripe->nr_stripes; i++) + ptrs[i] = fstripe->stripes[i].data; + + if (fstripe->bg_type & BTRFS_BLOCK_GROUP_RAID6) { + raid6_gen_syndrome(nr_stripes, stripe_len, ptrs); + } else { + ret = raid5_gen_result(nr_stripes, stripe_len, nr_stripes - 1, + ptrs); + if (ret < 0) + goto out; + } + + for (i = 0; i < fstripe->nr_stripes; i++) { + struct scrub_stripe *stripe = &fstripe->stripes[i]; + + ret = pwrite(stripe->fd, stripe->data, fstripe->stripe_len, + stripe->physical); + if (ret != fstripe->stripe_len) { + ret = -EIO; + goto out; + } + } +out: + free(ptrs); + return ret; + +}