From patchwork Fri Sep 21 00:21:01 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: 1488401 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 95EDC3FE65 for ; Fri, 21 Sep 2012 00:21:15 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753073Ab2IUAVM (ORCPT ); Thu, 20 Sep 2012 20:21:12 -0400 Received: from mail-iy0-f174.google.com ([209.85.210.174]:59935 "EHLO mail-iy0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752853Ab2IUAVL (ORCPT ); Thu, 20 Sep 2012 20:21:11 -0400 Received: by iahk25 with SMTP id k25so2091649iah.19 for ; Thu, 20 Sep 2012 17:21:10 -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=peDhlRyPkz2ox/4YR9p+qP0BePxz0cHtpJpJuRh4kZc=; b=AdRc7vcme/pbeIpBo04hGQFGSH+GdsFkT6qSSO3/ogZmn+yQP06rvF60hFiQ7CIFeV GVCp6E0/7x91YGNMmf+neynfHhz22SBp+x6syU4HuKuZOMHXpLCxpPFQwufeYPfGvf4F HHxC1a0mHjDiOVlp533CyopQagI2XhlV1eWTlJfOT0BeXepyBlfHeQUghFZo6n3f4N9N msqWkTlpG22vFnriGCH9zJiQfJvF7XU71wQAX6wmCKfdY2JnbVqbSwmVRYWn7fSQmN15 /GZZUlOqKYTyL9pYKyzkWFqg6LDDmn1kRlZc5AEXfkzlArJkKUOrFbFB+uQivlfihnZ5 axtw== Received: by 10.50.152.198 with SMTP id va6mr205529igb.42.1348186870542; Thu, 20 Sep 2012 17:21:10 -0700 (PDT) Received: from [9.115.120.172] ([202.108.130.138]) by mx.google.com with ESMTPS id n5sm10444307igw.13.2012.09.20.17.21.07 (version=SSLv3 cipher=OTHER); Thu, 20 Sep 2012 17:21:09 -0700 (PDT) Message-ID: <505BB2ED.6030906@gmail.com> Date: Fri, 21 Sep 2012 08:21:01 +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: trivial@kernel.org, Liu Bo , linux-btrfs@vger.kernel.org Subject: [RESEND][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 field 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 */