diff options
author | Christoph Hellwig <hch@infradead.org> | 2008-10-30 03:27:48 -0400 |
---|---|---|
committer | Lachlan McIlroy <lachlan@redback.melbourne.sgi.com> | 2008-10-30 03:27:48 -0400 |
commit | ea5a3dc8356bf1cf27bab9a5a0da5dfbbb82013d (patch) | |
tree | 30af54170d0cb3b06c2ac21bc31bc57fc5eb4d43 /fs/xfs/linux-2.6/xfs_cred.h | |
parent | 7ee49acfe54883f16d28d9486b789431a5804d18 (diff) |
[XFS] kill sys_cred
capable_cred has been unused for a while so we can kill it and sys_cred.
That also means the cred argument to xfs_setattr and xfs_change_file_space
can be removed now.
SGI-PV: 988918
SGI-Modid: xfs-linux-melb:xfs-kern:32412a
Signed-off-by: Christoph Hellwig <hch@infradead.org>
Signed-off-by: Tim Shimmin <tes@sgi.com>
Signed-off-by: David Chinner <david@fromorbit.com>
Signed-off-by: Lachlan McIlroy <lachlan@sgi.com>
Diffstat (limited to 'fs/xfs/linux-2.6/xfs_cred.h')
-rw-r--r-- | fs/xfs/linux-2.6/xfs_cred.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/fs/xfs/linux-2.6/xfs_cred.h b/fs/xfs/linux-2.6/xfs_cred.h index 652721ce0ea5..98da2199bc23 100644 --- a/fs/xfs/linux-2.6/xfs_cred.h +++ b/fs/xfs/linux-2.6/xfs_cred.h | |||
@@ -27,12 +27,4 @@ typedef struct cred { | |||
27 | /* EMPTY */ | 27 | /* EMPTY */ |
28 | } cred_t; | 28 | } cred_t; |
29 | 29 | ||
30 | extern struct cred *sys_cred; | ||
31 | |||
32 | /* this is a hack.. (assumes sys_cred is the only cred_t in the system) */ | ||
33 | static inline int capable_cred(cred_t *cr, int cid) | ||
34 | { | ||
35 | return (cr == sys_cred) ? 1 : capable(cid); | ||
36 | } | ||
37 | |||
38 | #endif /* __XFS_CRED_H__ */ | 30 | #endif /* __XFS_CRED_H__ */ |