diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2016-10-10 23:16:43 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-10-10 23:16:43 -0400 |
commit | 101105b1717f536ca741f940033996302d4ef191 (patch) | |
tree | 12ab41ae1b1b66105e9fa2ea763356d2be7e8b34 /fs/sysv | |
parent | 35ff96dfd3c9aaa921b3e8dcac76b7697f2dcec0 (diff) | |
parent | 3873691e5ab34fa26948643d038a2b98c4437298 (diff) |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs
Pull more vfs updates from Al Viro:
">rename2() work from Miklos + current_time() from Deepa"
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs:
fs: Replace current_fs_time() with current_time()
fs: Replace CURRENT_TIME_SEC with current_time() for inode timestamps
fs: Replace CURRENT_TIME with current_time() for inode timestamps
fs: proc: Delete inode time initializations in proc_alloc_inode()
vfs: Add current_time() api
vfs: add note about i_op->rename changes to porting
fs: rename "rename2" i_op to "rename"
vfs: remove unused i_op->rename
fs: make remaining filesystems use .rename2
libfs: support RENAME_NOREPLACE in simple_rename()
fs: support RENAME_NOREPLACE for local filesystems
ncpfs: fix unused variable warning
Diffstat (limited to 'fs/sysv')
-rw-r--r-- | fs/sysv/dir.c | 6 | ||||
-rw-r--r-- | fs/sysv/ialloc.c | 2 | ||||
-rw-r--r-- | fs/sysv/itree.c | 4 | ||||
-rw-r--r-- | fs/sysv/namei.c | 10 |
4 files changed, 13 insertions, 9 deletions
diff --git a/fs/sysv/dir.c b/fs/sysv/dir.c index 2661b77fc8a7..5bdae85ceef7 100644 --- a/fs/sysv/dir.c +++ b/fs/sysv/dir.c | |||
@@ -215,7 +215,7 @@ got_it: | |||
215 | memset (de->name + namelen, 0, SYSV_DIRSIZE - namelen - 2); | 215 | memset (de->name + namelen, 0, SYSV_DIRSIZE - namelen - 2); |
216 | de->inode = cpu_to_fs16(SYSV_SB(inode->i_sb), inode->i_ino); | 216 | de->inode = cpu_to_fs16(SYSV_SB(inode->i_sb), inode->i_ino); |
217 | err = dir_commit_chunk(page, pos, SYSV_DIRSIZE); | 217 | err = dir_commit_chunk(page, pos, SYSV_DIRSIZE); |
218 | dir->i_mtime = dir->i_ctime = CURRENT_TIME_SEC; | 218 | dir->i_mtime = dir->i_ctime = current_time(dir); |
219 | mark_inode_dirty(dir); | 219 | mark_inode_dirty(dir); |
220 | out_page: | 220 | out_page: |
221 | dir_put_page(page); | 221 | dir_put_page(page); |
@@ -239,7 +239,7 @@ int sysv_delete_entry(struct sysv_dir_entry *de, struct page *page) | |||
239 | de->inode = 0; | 239 | de->inode = 0; |
240 | err = dir_commit_chunk(page, pos, SYSV_DIRSIZE); | 240 | err = dir_commit_chunk(page, pos, SYSV_DIRSIZE); |
241 | dir_put_page(page); | 241 | dir_put_page(page); |
242 | inode->i_ctime = inode->i_mtime = CURRENT_TIME_SEC; | 242 | inode->i_ctime = inode->i_mtime = current_time(inode); |
243 | mark_inode_dirty(inode); | 243 | mark_inode_dirty(inode); |
244 | return err; | 244 | return err; |
245 | } | 245 | } |
@@ -337,7 +337,7 @@ void sysv_set_link(struct sysv_dir_entry *de, struct page *page, | |||
337 | de->inode = cpu_to_fs16(SYSV_SB(inode->i_sb), inode->i_ino); | 337 | de->inode = cpu_to_fs16(SYSV_SB(inode->i_sb), inode->i_ino); |
338 | err = dir_commit_chunk(page, pos, SYSV_DIRSIZE); | 338 | err = dir_commit_chunk(page, pos, SYSV_DIRSIZE); |
339 | dir_put_page(page); | 339 | dir_put_page(page); |
340 | dir->i_mtime = dir->i_ctime = CURRENT_TIME_SEC; | 340 | dir->i_mtime = dir->i_ctime = current_time(dir); |
341 | mark_inode_dirty(dir); | 341 | mark_inode_dirty(dir); |
342 | } | 342 | } |
343 | 343 | ||
diff --git a/fs/sysv/ialloc.c b/fs/sysv/ialloc.c index f9db4eb31db4..53f1b78996dd 100644 --- a/fs/sysv/ialloc.c +++ b/fs/sysv/ialloc.c | |||
@@ -164,7 +164,7 @@ struct inode * sysv_new_inode(const struct inode * dir, umode_t mode) | |||
164 | dirty_sb(sb); | 164 | dirty_sb(sb); |
165 | inode_init_owner(inode, dir, mode); | 165 | inode_init_owner(inode, dir, mode); |
166 | inode->i_ino = fs16_to_cpu(sbi, ino); | 166 | inode->i_ino = fs16_to_cpu(sbi, ino); |
167 | inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME_SEC; | 167 | inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode); |
168 | inode->i_blocks = 0; | 168 | inode->i_blocks = 0; |
169 | memset(SYSV_I(inode)->i_data, 0, sizeof(SYSV_I(inode)->i_data)); | 169 | memset(SYSV_I(inode)->i_data, 0, sizeof(SYSV_I(inode)->i_data)); |
170 | SYSV_I(inode)->i_dir_start_lookup = 0; | 170 | SYSV_I(inode)->i_dir_start_lookup = 0; |
diff --git a/fs/sysv/itree.c b/fs/sysv/itree.c index 2fde40acf024..08d3e630b49c 100644 --- a/fs/sysv/itree.c +++ b/fs/sysv/itree.c | |||
@@ -178,7 +178,7 @@ static inline int splice_branch(struct inode *inode, | |||
178 | *where->p = where->key; | 178 | *where->p = where->key; |
179 | write_unlock(&pointers_lock); | 179 | write_unlock(&pointers_lock); |
180 | 180 | ||
181 | inode->i_ctime = CURRENT_TIME_SEC; | 181 | inode->i_ctime = current_time(inode); |
182 | 182 | ||
183 | /* had we spliced it onto indirect block? */ | 183 | /* had we spliced it onto indirect block? */ |
184 | if (where->bh) | 184 | if (where->bh) |
@@ -418,7 +418,7 @@ do_indirects: | |||
418 | } | 418 | } |
419 | n++; | 419 | n++; |
420 | } | 420 | } |
421 | inode->i_mtime = inode->i_ctime = CURRENT_TIME_SEC; | 421 | inode->i_mtime = inode->i_ctime = current_time(inode); |
422 | if (IS_SYNC(inode)) | 422 | if (IS_SYNC(inode)) |
423 | sysv_sync_inode (inode); | 423 | sysv_sync_inode (inode); |
424 | else | 424 | else |
diff --git a/fs/sysv/namei.c b/fs/sysv/namei.c index a42de45ce40d..d8817f139763 100644 --- a/fs/sysv/namei.c +++ b/fs/sysv/namei.c | |||
@@ -120,7 +120,7 @@ static int sysv_link(struct dentry * old_dentry, struct inode * dir, | |||
120 | { | 120 | { |
121 | struct inode *inode = d_inode(old_dentry); | 121 | struct inode *inode = d_inode(old_dentry); |
122 | 122 | ||
123 | inode->i_ctime = CURRENT_TIME_SEC; | 123 | inode->i_ctime = current_time(inode); |
124 | inode_inc_link_count(inode); | 124 | inode_inc_link_count(inode); |
125 | ihold(inode); | 125 | ihold(inode); |
126 | 126 | ||
@@ -206,7 +206,8 @@ static int sysv_rmdir(struct inode * dir, struct dentry * dentry) | |||
206 | * higher-level routines. | 206 | * higher-level routines. |
207 | */ | 207 | */ |
208 | static int sysv_rename(struct inode * old_dir, struct dentry * old_dentry, | 208 | static int sysv_rename(struct inode * old_dir, struct dentry * old_dentry, |
209 | struct inode * new_dir, struct dentry * new_dentry) | 209 | struct inode * new_dir, struct dentry * new_dentry, |
210 | unsigned int flags) | ||
210 | { | 211 | { |
211 | struct inode * old_inode = d_inode(old_dentry); | 212 | struct inode * old_inode = d_inode(old_dentry); |
212 | struct inode * new_inode = d_inode(new_dentry); | 213 | struct inode * new_inode = d_inode(new_dentry); |
@@ -216,6 +217,9 @@ static int sysv_rename(struct inode * old_dir, struct dentry * old_dentry, | |||
216 | struct sysv_dir_entry * old_de; | 217 | struct sysv_dir_entry * old_de; |
217 | int err = -ENOENT; | 218 | int err = -ENOENT; |
218 | 219 | ||
220 | if (flags & ~RENAME_NOREPLACE) | ||
221 | return -EINVAL; | ||
222 | |||
219 | old_de = sysv_find_entry(old_dentry, &old_page); | 223 | old_de = sysv_find_entry(old_dentry, &old_page); |
220 | if (!old_de) | 224 | if (!old_de) |
221 | goto out; | 225 | goto out; |
@@ -240,7 +244,7 @@ static int sysv_rename(struct inode * old_dir, struct dentry * old_dentry, | |||
240 | if (!new_de) | 244 | if (!new_de) |
241 | goto out_dir; | 245 | goto out_dir; |
242 | sysv_set_link(new_de, new_page, old_inode); | 246 | sysv_set_link(new_de, new_page, old_inode); |
243 | new_inode->i_ctime = CURRENT_TIME_SEC; | 247 | new_inode->i_ctime = current_time(new_inode); |
244 | if (dir_de) | 248 | if (dir_de) |
245 | drop_nlink(new_inode); | 249 | drop_nlink(new_inode); |
246 | inode_dec_link_count(new_inode); | 250 | inode_dec_link_count(new_inode); |