aboutsummaryrefslogtreecommitdiffstats
path: root/ipc
diff options
context:
space:
mode:
authorAndrew Morton <akpm@digeo.com>2003-05-07 08:16:05 -0700
committerLinus Torvalds <torvalds@home.transmeta.com>2003-05-07 08:16:05 -0700
commitdf37f627e79e55a1273ed526e1a570590ba73e40 (patch)
tree47162d88bfa5bdb84ea703372f199ed3be0049d4 /ipc
parentb7bd1dee9cecddb692740a236f14d6769172acbf (diff)
downloadhistory-df37f627e79e55a1273ed526e1a570590ba73e40.tar.gz
[PATCH] s/UPDATE_ATIME/update_atime/ cleanup
From: Stewart Smith <stewartsmith@mac.com> Remove the UPDATE_ATIME() macro, use update_atime() directly.
Diffstat (limited to 'ipc')
-rw-r--r--ipc/shm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipc/shm.c b/ipc/shm.c
index 19c06135b18479..29684c056882d0 100644
--- a/ipc/shm.c
+++ b/ipc/shm.c
@@ -149,7 +149,7 @@ static void shm_close (struct vm_area_struct *shmd)
static int shm_mmap(struct file * file, struct vm_area_struct * vma)
{
- UPDATE_ATIME(file->f_dentry->d_inode);
+ update_atime(file->f_dentry->d_inode);
vma->vm_ops = &shm_vm_ops;
shm_inc(file->f_dentry->d_inode->i_ino);
return 0;