diff options
Diffstat (limited to 'ipc')
| -rw-r--r-- | ipc/mqueue.c | 1 | ||||
| -rw-r--r-- | ipc/shm.c | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/ipc/mqueue.c b/ipc/mqueue.c index c60e519e2917..e1e7b9635f5d 100644 --- a/ipc/mqueue.c +++ b/ipc/mqueue.c | |||
| @@ -1219,6 +1219,7 @@ static const struct file_operations mqueue_file_operations = { | |||
| 1219 | .flush = mqueue_flush_file, | 1219 | .flush = mqueue_flush_file, |
| 1220 | .poll = mqueue_poll_file, | 1220 | .poll = mqueue_poll_file, |
| 1221 | .read = mqueue_read_file, | 1221 | .read = mqueue_read_file, |
| 1222 | .llseek = default_llseek, | ||
| 1222 | }; | 1223 | }; |
| 1223 | 1224 | ||
| 1224 | static const struct super_operations mqueue_super_ops = { | 1225 | static const struct super_operations mqueue_super_ops = { |
| @@ -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) |
