diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2015-05-12 08:29:13 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2015-05-15 01:10:37 -0400 |
commit | 322105e2fe20b51587a328e7121dc04ea361b083 (patch) | |
tree | 7617d6f62a9d79655c679756bb9431b577ac9eea /drivers | |
parent | 539fcc0109346fca363257aa75c5e5a3916bf124 (diff) | |
download | linux-stable-322105e2fe20b51587a328e7121dc04ea361b083.tar.gz linux-stable-322105e2fe20b51587a328e7121dc04ea361b083.tar.bz2 linux-stable-322105e2fe20b51587a328e7121dc04ea361b083.zip |
lustre: kill unused helper
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/staging/lustre/lustre/include/linux/lustre_compat25.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/drivers/staging/lustre/lustre/include/linux/lustre_compat25.h b/drivers/staging/lustre/lustre/include/linux/lustre_compat25.h index 3925db160650..513c81f43d6e 100644 --- a/drivers/staging/lustre/lustre/include/linux/lustre_compat25.h +++ b/drivers/staging/lustre/lustre/include/linux/lustre_compat25.h @@ -189,22 +189,7 @@ static inline int ll_quota_off(struct super_block *sb, int off, int remount) #endif - -/* - * After 3.1, kernel's nameidata.intent.open.flags is different - * with lustre's lookup_intent.it_flags, as lustre's it_flags' - * lower bits equal to FMODE_xxx while kernel doesn't transliterate - * lower bits of nameidata.intent.open.flags to FMODE_xxx. - * */ #include <linux/version.h> -static inline int ll_namei_to_lookup_intent_flag(int flag) -{ -#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 1, 0) - flag = (flag & ~O_ACCMODE) | OPEN_FMODE(flag); -#endif - return flag; -} - #include <linux/fs.h> # define ll_umode_t umode_t |