diff options
Diffstat (limited to 'ipc/shm.c')
-rw-r--r-- | ipc/shm.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -298,6 +298,7 @@ static const struct file_operations shm_file_operations = { | |||
298 | #ifndef CONFIG_MMU | 298 | #ifndef CONFIG_MMU |
299 | .get_unmapped_area = shm_get_unmapped_area, | 299 | .get_unmapped_area = shm_get_unmapped_area, |
300 | #endif | 300 | #endif |
301 | .llseek = noop_llseek, | ||
301 | }; | 302 | }; |
302 | 303 | ||
303 | static const struct file_operations shm_file_operations_huge = { | 304 | static const struct file_operations shm_file_operations_huge = { |
@@ -305,6 +306,7 @@ static const struct file_operations shm_file_operations_huge = { | |||
305 | .fsync = shm_fsync, | 306 | .fsync = shm_fsync, |
306 | .release = shm_release, | 307 | .release = shm_release, |
307 | .get_unmapped_area = shm_get_unmapped_area, | 308 | .get_unmapped_area = shm_get_unmapped_area, |
309 | .llseek = noop_llseek, | ||
308 | }; | 310 | }; |
309 | 311 | ||
310 | int is_file_shm_hugepages(struct file *file) | 312 | int is_file_shm_hugepages(struct file *file) |