diff options
author | Dave Kleikamp <shaggy@austin.ibm.com> | 2005-09-01 09:02:43 -0500 |
---|---|---|
committer | Dave Kleikamp <shaggy@austin.ibm.com> | 2005-09-01 09:02:43 -0500 |
commit | 4f4b401bfaa97edbea41a1fcab794148e7ac0421 (patch) | |
tree | d58dcf9d90e15364398a3a4584f2892439295b64 /fs/jfs/jfs_xattr.h | |
parent | b1b5d7f9b7ac6a8e3452ac43a53eebf69fdf5a77 (diff) | |
download | linux-stable-4f4b401bfaa97edbea41a1fcab794148e7ac0421.tar.gz linux-stable-4f4b401bfaa97edbea41a1fcab794148e7ac0421.tar.bz2 linux-stable-4f4b401bfaa97edbea41a1fcab794148e7ac0421.zip |
JFS: allow extended attributes to be set within a existing transaction
Signed-off-by: Dave Kleikamp <shaggy@austin.ibm.com>
Diffstat (limited to 'fs/jfs/jfs_xattr.h')
-rw-r--r-- | fs/jfs/jfs_xattr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/jfs/jfs_xattr.h b/fs/jfs/jfs_xattr.h index a1052f3f0bee..116a73ce3076 100644 --- a/fs/jfs/jfs_xattr.h +++ b/fs/jfs/jfs_xattr.h @@ -52,8 +52,8 @@ struct jfs_ea_list { #define END_EALIST(ealist) \ ((struct jfs_ea *) (((char *) (ealist)) + EALIST_SIZE(ealist))) -extern int __jfs_setxattr(struct inode *, const char *, const void *, size_t, - int); +extern int __jfs_setxattr(tid_t, struct inode *, const char *, const void *, + size_t, int); extern int jfs_setxattr(struct dentry *, const char *, const void *, size_t, int); extern ssize_t __jfs_getxattr(struct inode *, const char *, void *, size_t); |