Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757984Ab0DOXNQ (ORCPT ); Thu, 15 Apr 2010 19:13:16 -0400 Received: from mx1.redhat.com ([209.132.183.28]:56813 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932172Ab0DOXG0 (ORCPT ); Thu, 15 Apr 2010 19:06:26 -0400 From: Valerie Aurora To: Alexander Viro Cc: linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org, Valerie Aurora Subject: [PATCH 12/35] fallthru: Basic fallthru definitions Date: Thu, 15 Apr 2010 16:04:19 -0700 Message-Id: <1271372682-21225-13-git-send-email-vaurora@redhat.com> In-Reply-To: <1271372682-21225-12-git-send-email-vaurora@redhat.com> References: <1271372682-21225-1-git-send-email-vaurora@redhat.com> <1271372682-21225-2-git-send-email-vaurora@redhat.com> <1271372682-21225-3-git-send-email-vaurora@redhat.com> <1271372682-21225-4-git-send-email-vaurora@redhat.com> <1271372682-21225-5-git-send-email-vaurora@redhat.com> <1271372682-21225-6-git-send-email-vaurora@redhat.com> <1271372682-21225-7-git-send-email-vaurora@redhat.com> <1271372682-21225-8-git-send-email-vaurora@redhat.com> <1271372682-21225-9-git-send-email-vaurora@redhat.com> <1271372682-21225-10-git-send-email-vaurora@redhat.com> <1271372682-21225-11-git-send-email-vaurora@redhat.com> <1271372682-21225-12-git-send-email-vaurora@redhat.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3721 Lines: 93 Define the fallthru dcache flag and file system op. Mask out the DCACHE_FALLTHRU flag on dentry creation. Actual users and changes to lookup come in later patches. Signed-off-by: Valerie Aurora --- Documentation/filesystems/vfs.txt | 6 ++++++ fs/dcache.c | 2 +- include/linux/dcache.h | 6 ++++++ include/linux/fs.h | 1 + 4 files changed, 14 insertions(+), 1 deletions(-) diff --git a/Documentation/filesystems/vfs.txt b/Documentation/filesystems/vfs.txt index 8846b4f..29f3476 100644 --- a/Documentation/filesystems/vfs.txt +++ b/Documentation/filesystems/vfs.txt @@ -320,6 +320,7 @@ struct inode_operations { int (*rmdir) (struct inode *,struct dentry *); int (*mknod) (struct inode *,struct dentry *,int,dev_t); int (*whiteout) (struct inode *, struct dentry *, struct dentry *); + int (*fallthru) (struct inode *, struct dentry *); int (*rename) (struct inode *, struct dentry *, struct inode *, struct dentry *); int (*readlink) (struct dentry *, char __user *,int); @@ -390,6 +391,11 @@ otherwise noted. second is the dentry for the whiteout itself. This method must unlink() or rmdir() the original entry if it exists. + fallthru: called by the readdir(2) system call on a layered file + system. Only required if you want to support fallthrus. + Fallthrus are place-holders for directory entries visible from + a lower level file system. + rename: called by the rename(2) system call to rename the object to have the parent and name given by the second inode and dentry. diff --git a/fs/dcache.c b/fs/dcache.c index 3b0e525..b76f9e4 100644 --- a/fs/dcache.c +++ b/fs/dcache.c @@ -993,7 +993,7 @@ EXPORT_SYMBOL(d_alloc_name); static void __d_instantiate(struct dentry *dentry, struct inode *inode) { if (inode) { - dentry->d_flags &= ~DCACHE_WHITEOUT; + dentry->d_flags &= ~(DCACHE_WHITEOUT|DCACHE_FALLTHRU); list_add(&dentry->d_alias, &inode->i_dentry); } dentry->d_inode = inode; diff --git a/include/linux/dcache.h b/include/linux/dcache.h index 7648b49..e035c51 100644 --- a/include/linux/dcache.h +++ b/include/linux/dcache.h @@ -184,6 +184,7 @@ d_iput: no no no yes #define DCACHE_COOKIE 0x0040 /* For use by dcookie subsystem */ #define DCACHE_WHITEOUT 0x0080 /* This negative dentry is a whiteout */ +#define DCACHE_FALLTHRU 0x0100 /* Keep looking in the file system below */ #define DCACHE_FSNOTIFY_PARENT_WATCHED 0x0080 /* Parent inode is watched by some fsnotify listener */ @@ -364,6 +365,11 @@ static inline int d_is_whiteout(struct dentry *dentry) return (dentry->d_flags & DCACHE_WHITEOUT); } +static inline int d_is_fallthru(struct dentry *dentry) +{ + return (dentry->d_flags & DCACHE_FALLTHRU); +} + static inline struct dentry *dget_parent(struct dentry *dentry) { struct dentry *ret; diff --git a/include/linux/fs.h b/include/linux/fs.h index a9f747c..a5ba718 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -1532,6 +1532,7 @@ struct inode_operations { int (*rmdir) (struct inode *,struct dentry *); int (*mknod) (struct inode *,struct dentry *,int,dev_t); int (*whiteout) (struct inode *, struct dentry *, struct dentry *); + int (*fallthru) (struct inode *, struct dentry *); int (*rename) (struct inode *, struct dentry *, struct inode *, struct dentry *); int (*readlink) (struct dentry *, char __user *,int); -- 1.6.3.3 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/