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
This commit is contained in:
commit
101105b171
182 changed files with 587 additions and 449 deletions
18
ipc/mqueue.c
18
ipc/mqueue.c
|
@ -225,7 +225,7 @@ static struct inode *mqueue_get_inode(struct super_block *sb,
|
|||
inode->i_mode = mode;
|
||||
inode->i_uid = current_fsuid();
|
||||
inode->i_gid = current_fsgid();
|
||||
inode->i_mtime = inode->i_ctime = inode->i_atime = CURRENT_TIME;
|
||||
inode->i_mtime = inode->i_ctime = inode->i_atime = current_time(inode);
|
||||
|
||||
if (S_ISREG(mode)) {
|
||||
struct mqueue_inode_info *info;
|
||||
|
@ -446,7 +446,7 @@ static int mqueue_create(struct inode *dir, struct dentry *dentry,
|
|||
|
||||
put_ipc_ns(ipc_ns);
|
||||
dir->i_size += DIRENT_SIZE;
|
||||
dir->i_ctime = dir->i_mtime = dir->i_atime = CURRENT_TIME;
|
||||
dir->i_ctime = dir->i_mtime = dir->i_atime = current_time(dir);
|
||||
|
||||
d_instantiate(dentry, inode);
|
||||
dget(dentry);
|
||||
|
@ -462,7 +462,7 @@ static int mqueue_unlink(struct inode *dir, struct dentry *dentry)
|
|||
{
|
||||
struct inode *inode = d_inode(dentry);
|
||||
|
||||
dir->i_ctime = dir->i_mtime = dir->i_atime = CURRENT_TIME;
|
||||
dir->i_ctime = dir->i_mtime = dir->i_atime = current_time(dir);
|
||||
dir->i_size -= DIRENT_SIZE;
|
||||
drop_nlink(inode);
|
||||
dput(dentry);
|
||||
|
@ -500,7 +500,7 @@ static ssize_t mqueue_read_file(struct file *filp, char __user *u_data,
|
|||
if (ret <= 0)
|
||||
return ret;
|
||||
|
||||
file_inode(filp)->i_atime = file_inode(filp)->i_ctime = CURRENT_TIME;
|
||||
file_inode(filp)->i_atime = file_inode(filp)->i_ctime = current_time(file_inode(filp));
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
@ -1060,7 +1060,7 @@ SYSCALL_DEFINE5(mq_timedsend, mqd_t, mqdes, const char __user *, u_msg_ptr,
|
|||
__do_notify(info);
|
||||
}
|
||||
inode->i_atime = inode->i_mtime = inode->i_ctime =
|
||||
CURRENT_TIME;
|
||||
current_time(inode);
|
||||
}
|
||||
out_unlock:
|
||||
spin_unlock(&info->lock);
|
||||
|
@ -1156,7 +1156,7 @@ SYSCALL_DEFINE5(mq_timedreceive, mqd_t, mqdes, char __user *, u_msg_ptr,
|
|||
msg_ptr = msg_get(info);
|
||||
|
||||
inode->i_atime = inode->i_mtime = inode->i_ctime =
|
||||
CURRENT_TIME;
|
||||
current_time(inode);
|
||||
|
||||
/* There is now free space in queue. */
|
||||
pipelined_receive(&wake_q, info);
|
||||
|
@ -1277,7 +1277,7 @@ retry:
|
|||
if (u_notification == NULL) {
|
||||
if (info->notify_owner == task_tgid(current)) {
|
||||
remove_notification(info);
|
||||
inode->i_atime = inode->i_ctime = CURRENT_TIME;
|
||||
inode->i_atime = inode->i_ctime = current_time(inode);
|
||||
}
|
||||
} else if (info->notify_owner != NULL) {
|
||||
ret = -EBUSY;
|
||||
|
@ -1302,7 +1302,7 @@ retry:
|
|||
|
||||
info->notify_owner = get_pid(task_tgid(current));
|
||||
info->notify_user_ns = get_user_ns(current_user_ns());
|
||||
inode->i_atime = inode->i_ctime = CURRENT_TIME;
|
||||
inode->i_atime = inode->i_ctime = current_time(inode);
|
||||
}
|
||||
spin_unlock(&info->lock);
|
||||
out_fput:
|
||||
|
@ -1359,7 +1359,7 @@ SYSCALL_DEFINE3(mq_getsetattr, mqd_t, mqdes,
|
|||
f.file->f_flags &= ~O_NONBLOCK;
|
||||
spin_unlock(&f.file->f_lock);
|
||||
|
||||
inode->i_atime = inode->i_ctime = CURRENT_TIME;
|
||||
inode->i_atime = inode->i_ctime = current_time(inode);
|
||||
}
|
||||
|
||||
spin_unlock(&info->lock);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue