From patchwork Thu Sep 20 15:07:03 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wang Sheng-Hui X-Patchwork-Id: 1486301 Return-Path: X-Original-To: patchwork-linux-btrfs@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork1.kernel.org (Postfix) with ESMTP id E53B93FD40 for ; Thu, 20 Sep 2012 15:07:34 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755513Ab2ITPHP (ORCPT ); Thu, 20 Sep 2012 11:07:15 -0400 Received: from mail-pb0-f46.google.com ([209.85.160.46]:63518 "EHLO mail-pb0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752129Ab2ITPHO (ORCPT ); Thu, 20 Sep 2012 11:07:14 -0400 Received: by pbbrr4 with SMTP id rr4so401772pbb.19 for ; Thu, 20 Sep 2012 08:07:13 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding; bh=4utzFt++pxZJ7DjdaygADo5dA+o8m/0Fdekgk6aHJEY=; b=ZkYbR8hJpSxOzolzauGB6bSsLh8aCpNsrEDnBZvQOHRZdHPmjUsc3+1RujBoMGWLEA RlIDwpniDPzya0QWHsYm/gbtb8zfZWrNRY23s9g4KeJ76nYqhrGIRuE6NdxfdZx9Bjsc uYHwRszlJ7YgZ1jNvMPdc5XmrR4ajtxQnPbF1jY29hy40Nhjzfia8ak0IuytlAEVo/9E YlpX0Wd38uawFaaY7s5XoX1HLWwtn4hZ7Lez0Nospv75J+L/m2xtZe77IqwFY9ni8x30 QHWmBeLqcPjqHEZtP+eGigNeXD4xydAUlaL1y2Cq7U+2wdEfzQD+Mg84ZqLUkeWQDCU4 lBWg== Received: by 10.68.189.70 with SMTP id gg6mr7530366pbc.125.1348153633727; Thu, 20 Sep 2012 08:07:13 -0700 (PDT) Received: from [192.168.1.102] ([122.70.17.98]) by mx.google.com with ESMTPS id kt1sm3626319pbc.45.2012.09.20.08.07.10 (version=SSLv3 cipher=OTHER); Thu, 20 Sep 2012 08:07:12 -0700 (PDT) Message-ID: <505B3117.9040603@gmail.com> Date: Thu, 20 Sep 2012 23:07:03 +0800 From: Wang Sheng-Hui User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.18) Gecko/20110617 Thunderbird/3.1.11 MIME-Version: 1.0 To: chris.mason@fusionio.com, linux-btrfs@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] Btrfs: small fix the commment for the action flags in delayed-ref.h Sender: linux-btrfs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-btrfs@vger.kernel.org The action has been merged into struct btrfs_delayed_ref_node, and no struct btrfs_delayed_ref is available now. Signed-off-by: Wang Sheng-Hui --- fs/btrfs/delayed-ref.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/fs/btrfs/delayed-ref.h b/fs/btrfs/delayed-ref.h index ab53005..c9d7036 100644 --- a/fs/btrfs/delayed-ref.h +++ b/fs/btrfs/delayed-ref.h @@ -18,7 +18,7 @@ #ifndef __DELAYED_REF__ #define __DELAYED_REF__ -/* these are the possible values of struct btrfs_delayed_ref->action */ +/* these are the possible values of struct btrfs_delayed_ref_node->action */ #define BTRFS_ADD_DELAYED_REF 1 /* add one backref to the tree */ #define BTRFS_DROP_DELAYED_REF 2 /* delete one backref from the tree */ #define BTRFS_ADD_DELAYED_EXTENT 3 /* record a full extent allocation */