summaryrefslogtreecommitdiffstats
path: root/ipc/shm.c
diff options
context:
space:
mode:
authorKrishnakumar R2005-10-30 02:16:45 +0100
committerLinus Torvalds2005-10-30 05:40:43 +0100
commit551110a94aa15890d1709b179c4be1e66ff6db53 (patch)
treef16ab250dcb50a7839d26b7abc2a165b705c5fb0 /ipc/shm.c
parent[PATCH] cleanup hugelbfs_forget_inode (diff)
downloadkernel-qcow2-linux-551110a94aa15890d1709b179c4be1e66ff6db53.tar.gz
kernel-qcow2-linux-551110a94aa15890d1709b179c4be1e66ff6db53.tar.xz
kernel-qcow2-linux-551110a94aa15890d1709b179c4be1e66ff6db53.zip
[PATCH] hugetlb: remove repeated code
Clean up some repeated code related to HugeTLB. hugetlb_zero_setup would have already allocated the file->f_op. Signed-off-by: Krishnakumar. R <rkrishnakumar@gmail.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'ipc/shm.c')
-rw-r--r--ipc/shm.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/ipc/shm.c b/ipc/shm.c
index dca90489e3b0..b58c651d31ae 100644
--- a/ipc/shm.c
+++ b/ipc/shm.c
@@ -233,10 +233,11 @@ static int newseg (key_t key, int shmflg, size_t size)
shp->id = shm_buildid(id,shp->shm_perm.seq);
shp->shm_file = file;
file->f_dentry->d_inode->i_ino = shp->id;
- if (shmflg & SHM_HUGETLB)
- set_file_hugepages(file);
- else
+
+ /* Hugetlb ops would have already been assigned. */
+ if (!(shmflg & SHM_HUGETLB))
file->f_op = &shm_file_operations;
+
shm_tot += numpages;
shm_unlock(shp);
return shp->id;