Remove a couple kernel config variables (FS_POSIX_CAP and FS_POSIX_MAC) that represent placeholders for unimplemented functionality.
Signed-off-by: Robert P. J. Day <[EMAIL PROTECTED]> --- compile-tested on i386. fs/xfs/xfs_cap.h | 15 --------------- fs/xfs/xfs_mac.h | 17 ----------------- 2 files changed, 32 deletions(-) diff --git a/fs/xfs/xfs_cap.h b/fs/xfs/xfs_cap.h index 7a0e482..cfedfd1 100644 --- a/fs/xfs/xfs_cap.h +++ b/fs/xfs/xfs_cap.h @@ -45,25 +45,10 @@ typedef struct xfs_cap_set { #ifdef __KERNEL__ -#ifdef CONFIG_FS_POSIX_CAP - -#include <linux/posix_cap_xattr.h> - -struct bhv_vnode; - -extern int xfs_cap_vhascap(struct bhv_vnode *); -extern int xfs_cap_vset(struct bhv_vnode *, void *, size_t); -extern int xfs_cap_vget(struct bhv_vnode *, void *, size_t); -extern int xfs_cap_vremove(struct bhv_vnode *); - -#define _CAP_EXISTS xfs_cap_vhascap - -#else #define xfs_cap_vset(v,p,sz) (-EOPNOTSUPP) #define xfs_cap_vget(v,p,sz) (-EOPNOTSUPP) #define xfs_cap_vremove(v) (-EOPNOTSUPP) #define _CAP_EXISTS (NULL) -#endif #endif /* __KERNEL__ */ diff --git a/fs/xfs/xfs_mac.h b/fs/xfs/xfs_mac.h index 18e0e98..a3f7eaf 100644 --- a/fs/xfs/xfs_mac.h +++ b/fs/xfs/xfs_mac.h @@ -80,26 +80,9 @@ typedef struct xfs_mac_label { #ifdef __KERNEL__ -#ifdef CONFIG_FS_POSIX_MAC - -/* NOT YET IMPLEMENTED */ - -#define MACEXEC 00100 -#define MACWRITE 00200 -#define MACREAD 00400 - -struct xfs_inode; -extern int xfs_mac_iaccess(struct xfs_inode *, mode_t, cred_t *); - -#define _MAC_XFS_IACCESS(i,m,c) (xfs_mac_iaccess(i,m,c)) -#define _MAC_VACCESS(v,c,m) (xfs_mac_vaccess(v,c,m)) -#define _MAC_EXISTS xfs_mac_vhaslabel - -#else #define _MAC_XFS_IACCESS(i,m,c) (0) #define _MAC_VACCESS(v,c,m) (0) #define _MAC_EXISTS (NULL) -#endif #endif /* __KERNEL__ */ -- ======================================================================== Robert P. J. Day Linux Consulting, Training and Annoying Kernel Pedantry Waterloo, Ontario, CANADA http://www.fsdev.dreamhosters.com/wiki/index.php?title=Main_Page ======================================================================== - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/