[PATCH] Fix get_unmapped_area and fsync for hugetlb shm segments
This patch provides the following hugetlb-related fixes to the recent stacked shm files changes: - Update is_file_hugepages() so it will reconize hugetlb shm segments. - get_unmapped_area must be called with the nested file struct to handle the sfd->file->f_ops->get_unmapped_area == NULL case. - The fsync f_op must be wrapped since it is specified in the hugetlbfs f_ops. This is based on proposed fixes from Eric Biederman that were debugged and tested by me. Without it, attempting to use hugetlb shared memory segments on powerpc (and likely ia64) will kill your box. Signed-off-by: Adam Litke <agl@us.ibm.com> Cc: Eric Biederman <ebiederm@xmission.com> Cc: Andrew Morton <akpm@linux-foundation.org> Acked-by: William Irwin <bill.irwin@oracle.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
7b965e0884
commit
516dffdcd8
|
@ -4,6 +4,7 @@
|
||||||
#ifdef CONFIG_HUGETLB_PAGE
|
#ifdef CONFIG_HUGETLB_PAGE
|
||||||
|
|
||||||
#include <linux/mempolicy.h>
|
#include <linux/mempolicy.h>
|
||||||
|
#include <linux/shm.h>
|
||||||
#include <asm/tlbflush.h>
|
#include <asm/tlbflush.h>
|
||||||
|
|
||||||
struct ctl_table;
|
struct ctl_table;
|
||||||
|
@ -168,7 +169,12 @@ void hugetlb_put_quota(struct address_space *mapping);
|
||||||
|
|
||||||
static inline int is_file_hugepages(struct file *file)
|
static inline int is_file_hugepages(struct file *file)
|
||||||
{
|
{
|
||||||
return file->f_op == &hugetlbfs_file_operations;
|
if (file->f_op == &hugetlbfs_file_operations)
|
||||||
|
return 1;
|
||||||
|
if (is_file_shm_hugepages(file))
|
||||||
|
return 1;
|
||||||
|
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void set_file_hugepages(struct file *file)
|
static inline void set_file_hugepages(struct file *file)
|
||||||
|
|
|
@ -96,12 +96,17 @@ struct shmid_kernel /* private to the kernel */
|
||||||
|
|
||||||
#ifdef CONFIG_SYSVIPC
|
#ifdef CONFIG_SYSVIPC
|
||||||
long do_shmat(int shmid, char __user *shmaddr, int shmflg, unsigned long *addr);
|
long do_shmat(int shmid, char __user *shmaddr, int shmflg, unsigned long *addr);
|
||||||
|
extern int is_file_shm_hugepages(struct file *file);
|
||||||
#else
|
#else
|
||||||
static inline long do_shmat(int shmid, char __user *shmaddr,
|
static inline long do_shmat(int shmid, char __user *shmaddr,
|
||||||
int shmflg, unsigned long *addr)
|
int shmflg, unsigned long *addr)
|
||||||
{
|
{
|
||||||
return -ENOSYS;
|
return -ENOSYS;
|
||||||
}
|
}
|
||||||
|
static inline int is_file_shm_hugepages(struct file *file)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif /* __KERNEL__ */
|
#endif /* __KERNEL__ */
|
||||||
|
|
32
ipc/shm.c
32
ipc/shm.c
|
@ -285,21 +285,41 @@ static int shm_release(struct inode *ino, struct file *file)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifndef CONFIG_MMU
|
static int shm_fsync(struct file *file, struct dentry *dentry, int datasync)
|
||||||
|
{
|
||||||
|
int (*fsync) (struct file *, struct dentry *, int datasync);
|
||||||
|
struct shm_file_data *sfd = shm_file_data(file);
|
||||||
|
int ret = -EINVAL;
|
||||||
|
|
||||||
|
fsync = sfd->file->f_op->fsync;
|
||||||
|
if (fsync)
|
||||||
|
ret = fsync(sfd->file, sfd->file->f_path.dentry, datasync);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
static unsigned long shm_get_unmapped_area(struct file *file,
|
static unsigned long shm_get_unmapped_area(struct file *file,
|
||||||
unsigned long addr, unsigned long len, unsigned long pgoff,
|
unsigned long addr, unsigned long len, unsigned long pgoff,
|
||||||
unsigned long flags)
|
unsigned long flags)
|
||||||
{
|
{
|
||||||
struct shm_file_data *sfd = shm_file_data(file);
|
struct shm_file_data *sfd = shm_file_data(file);
|
||||||
return sfd->file->f_op->get_unmapped_area(sfd->file, addr, len, pgoff,
|
return get_unmapped_area(sfd->file, addr, len, pgoff, flags);
|
||||||
flags);
|
}
|
||||||
|
|
||||||
|
int is_file_shm_hugepages(struct file *file)
|
||||||
|
{
|
||||||
|
int ret = 0;
|
||||||
|
|
||||||
|
if (file->f_op == &shm_file_operations) {
|
||||||
|
struct shm_file_data *sfd;
|
||||||
|
sfd = shm_file_data(file);
|
||||||
|
ret = is_file_hugepages(sfd->file);
|
||||||
|
}
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
#else
|
|
||||||
#define shm_get_unmapped_area NULL
|
|
||||||
#endif
|
|
||||||
|
|
||||||
static const struct file_operations shm_file_operations = {
|
static const struct file_operations shm_file_operations = {
|
||||||
.mmap = shm_mmap,
|
.mmap = shm_mmap,
|
||||||
|
.fsync = shm_fsync,
|
||||||
.release = shm_release,
|
.release = shm_release,
|
||||||
.get_unmapped_area = shm_get_unmapped_area,
|
.get_unmapped_area = shm_get_unmapped_area,
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue