aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDeepa Dinamani2017-05-08 17:59:31 -0500
committerLinus Torvalds2017-05-08 19:15:15 -0500
commit24d0d03c2edcd24906cf04fe4f41fa619f1fe632 (patch)
tree6da75e2080f98745ad26ef91916219437405615c /security
parent47f38c539e9a42344ff5a664942075bd4df93876 (diff)
downloadkernel-24d0d03c2edcd24906cf04fe4f41fa619f1fe632.tar.gz
kernel-24d0d03c2edcd24906cf04fe4f41fa619f1fe632.tar.xz
kernel-24d0d03c2edcd24906cf04fe4f41fa619f1fe632.zip
apparmorfs: replace CURRENT_TIME with current_time()
CURRENT_TIME macro is not y2038 safe on 32 bit systems. The patch replaces all the uses of CURRENT_TIME by current_time(). This is also in preparation for the patch that transitions vfs timestamps to use 64 bit time and hence make them y2038 safe. current_time() is also planned to be transitioned to y2038 safe behavior along with this change. CURRENT_TIME macro will be deleted before merging the aforementioned change. Link: http://lkml.kernel.org/r/1491613030-11599-11-git-send-email-deepa.kernel@gmail.com Signed-off-by: Deepa Dinamani <deepa.kernel@gmail.com> Acked-by: John Johansen <john.johansen@canonical.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'security')
-rw-r--r--security/apparmor/apparmorfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/security/apparmor/apparmorfs.c b/security/apparmor/apparmorfs.c
index be0b49897a67..4f6ac9dbc65d 100644
--- a/security/apparmor/apparmorfs.c
+++ b/security/apparmor/apparmorfs.c
@@ -1357,7 +1357,7 @@ static int aa_mk_null_file(struct dentry *parent)
1357 1357
1358 inode->i_ino = get_next_ino(); 1358 inode->i_ino = get_next_ino();
1359 inode->i_mode = S_IFCHR | S_IRUGO | S_IWUGO; 1359 inode->i_mode = S_IFCHR | S_IRUGO | S_IWUGO;
1360 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME; 1360 inode->i_atime = inode->i_mtime = inode->i_ctime = current_time(inode);
1361 init_special_inode(inode, S_IFCHR | S_IRUGO | S_IWUGO, 1361 init_special_inode(inode, S_IFCHR | S_IRUGO | S_IWUGO,
1362 MKDEV(MEM_MAJOR, 3)); 1362 MKDEV(MEM_MAJOR, 3));
1363 d_instantiate(dentry, inode); 1363 d_instantiate(dentry, inode);