diff options
author | Jan Kara <jack@suse.cz> | 2007-04-27 14:08:01 -0400 |
---|---|---|
committer | Mark Fasheh <mark.fasheh@oracle.com> | 2007-05-02 18:07:58 -0400 |
commit | 6e4b0d5692cd27d3c9be893a9f5939a9cafbb09f (patch) | |
tree | 8076c0c9705054596c435075a9e3bae9e8566898 /fs | |
parent | 5c2c9d383ef7f7cfc02d6355798b95988de359b4 (diff) |
[PATCH] Copy i_flags to ocfs2 inode flags on write
Propagate flags such as S_APPEND, S_IMMUTABLE, etc. from i_flags into
ocfs2-specific ip_attr. Hence, when someone sets these flags via a different
interface than ioctl, they are stored correctly.
Signed-off-by: Jan Kara <jack@suse.cz>
Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/ocfs2/inode.c | 20 | ||||
-rw-r--r-- | fs/ocfs2/inode.h | 1 | ||||
-rw-r--r-- | fs/ocfs2/ioctl.c | 1 |
3 files changed, 22 insertions, 0 deletions
diff --git a/fs/ocfs2/inode.c b/fs/ocfs2/inode.c index 58ec54b60038..b6cfc5cdb3b6 100644 --- a/fs/ocfs2/inode.c +++ b/fs/ocfs2/inode.c | |||
@@ -89,6 +89,25 @@ void ocfs2_set_inode_flags(struct inode *inode) | |||
89 | inode->i_flags |= S_DIRSYNC; | 89 | inode->i_flags |= S_DIRSYNC; |
90 | } | 90 | } |
91 | 91 | ||
92 | /* Propagate flags from i_flags to OCFS2_I(inode)->ip_attr */ | ||
93 | void ocfs2_get_inode_flags(struct ocfs2_inode_info *oi) | ||
94 | { | ||
95 | unsigned int flags = oi->vfs_inode.i_flags; | ||
96 | |||
97 | oi->ip_attr &= ~(OCFS2_SYNC_FL|OCFS2_APPEND_FL| | ||
98 | OCFS2_IMMUTABLE_FL|OCFS2_NOATIME_FL|OCFS2_DIRSYNC_FL); | ||
99 | if (flags & S_SYNC) | ||
100 | oi->ip_attr |= OCFS2_SYNC_FL; | ||
101 | if (flags & S_APPEND) | ||
102 | oi->ip_attr |= OCFS2_APPEND_FL; | ||
103 | if (flags & S_IMMUTABLE) | ||
104 | oi->ip_attr |= OCFS2_IMMUTABLE_FL; | ||
105 | if (flags & S_NOATIME) | ||
106 | oi->ip_attr |= OCFS2_NOATIME_FL; | ||
107 | if (flags & S_DIRSYNC) | ||
108 | oi->ip_attr |= OCFS2_DIRSYNC_FL; | ||
109 | } | ||
110 | |||
92 | struct inode *ocfs2_iget(struct ocfs2_super *osb, u64 blkno, int flags) | 111 | struct inode *ocfs2_iget(struct ocfs2_super *osb, u64 blkno, int flags) |
93 | { | 112 | { |
94 | struct inode *inode = NULL; | 113 | struct inode *inode = NULL; |
@@ -1199,6 +1218,7 @@ int ocfs2_mark_inode_dirty(handle_t *handle, | |||
1199 | 1218 | ||
1200 | spin_lock(&OCFS2_I(inode)->ip_lock); | 1219 | spin_lock(&OCFS2_I(inode)->ip_lock); |
1201 | fe->i_clusters = cpu_to_le32(OCFS2_I(inode)->ip_clusters); | 1220 | fe->i_clusters = cpu_to_le32(OCFS2_I(inode)->ip_clusters); |
1221 | ocfs2_get_inode_flags(OCFS2_I(inode)); | ||
1202 | fe->i_attr = cpu_to_le32(OCFS2_I(inode)->ip_attr); | 1222 | fe->i_attr = cpu_to_le32(OCFS2_I(inode)->ip_attr); |
1203 | spin_unlock(&OCFS2_I(inode)->ip_lock); | 1223 | spin_unlock(&OCFS2_I(inode)->ip_lock); |
1204 | 1224 | ||
diff --git a/fs/ocfs2/inode.h b/fs/ocfs2/inode.h index 03ae075869ee..a41d0817121b 100644 --- a/fs/ocfs2/inode.h +++ b/fs/ocfs2/inode.h | |||
@@ -141,6 +141,7 @@ int ocfs2_aio_read(struct file *file, struct kiocb *req, struct iocb *iocb); | |||
141 | int ocfs2_aio_write(struct file *file, struct kiocb *req, struct iocb *iocb); | 141 | int ocfs2_aio_write(struct file *file, struct kiocb *req, struct iocb *iocb); |
142 | 142 | ||
143 | void ocfs2_set_inode_flags(struct inode *inode); | 143 | void ocfs2_set_inode_flags(struct inode *inode); |
144 | void ocfs2_get_inode_flags(struct ocfs2_inode_info *oi); | ||
144 | 145 | ||
145 | static inline blkcnt_t ocfs2_inode_sector_count(struct inode *inode) | 146 | static inline blkcnt_t ocfs2_inode_sector_count(struct inode *inode) |
146 | { | 147 | { |
diff --git a/fs/ocfs2/ioctl.c b/fs/ocfs2/ioctl.c index 7e59c93751f0..f3ad21ad9aed 100644 --- a/fs/ocfs2/ioctl.c +++ b/fs/ocfs2/ioctl.c | |||
@@ -31,6 +31,7 @@ static int ocfs2_get_inode_attr(struct inode *inode, unsigned *flags) | |||
31 | mlog_errno(status); | 31 | mlog_errno(status); |
32 | return status; | 32 | return status; |
33 | } | 33 | } |
34 | ocfs2_get_inode_flags(OCFS2_I(inode)); | ||
34 | *flags = OCFS2_I(inode)->ip_attr; | 35 | *flags = OCFS2_I(inode)->ip_attr; |
35 | ocfs2_meta_unlock(inode, 0); | 36 | ocfs2_meta_unlock(inode, 0); |
36 | 37 | ||