From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bernd Schubert Subject: [PATCH 5 1/4] Add new FMODE flags: FMODE_32bithash and FMODE_64bithash Date: Mon, 09 Jan 2012 14:21:43 +0100 Message-ID: <20120109132143.2616029.53962.stgit@localhost.localdomain> References: <20120109132137.2616029.76288.stgit@localhost.localdomain> Mime-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Cc: linux-fsdevel@vger.kernel.org, yong.fan@whamcloud.com, bfields@redhat.com, sandeen@redhat.com, adilger@whamcloud.com To: linux-nfs@vger.kernel.org, linux-ext4@vger.kernel.org Return-path: In-Reply-To: <20120109132137.2616029.76288.stgit@localhost.localdomain> Sender: linux-ext4-owner@vger.kernel.org List-Id: linux-fsdevel.vger.kernel.org Those flags are supposed to be set by NFS readdir() to tell ext3/ext4 to 32bit (NFSv2) or 64bit hash values (offsets) in seekdir(). Signed-off-by: Bernd Schubert --- include/linux/fs.h | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/include/linux/fs.h b/include/linux/fs.h index 7aacf31..b158386 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -92,6 +92,11 @@ struct inodes_stat_t { /* File is opened using open(.., 3, ..) and is writeable only for ioctls (specialy hack for floppy.c) */ #define FMODE_WRITE_IOCTL ((__force fmode_t)0x100) +/* 32bit hashes as llseek() offset (for directories) */ +#define FMODE_32BITHASH ((__force fmode_t)0x200) +/* 64bit hashes as llseek() offset (for directories) */ +#define FMODE_64BITHASH ((__force fmode_t)0x400) + /* * Don't update ctime and mtime.