|
@@ -52,7 +52,7 @@ struct sysv_shm {
|
|
|
|
|
|
long do_shmat(int shmid, char __user *shmaddr, int shmflg, unsigned long *addr,
|
|
|
unsigned long shmlba);
|
|
|
-int is_file_shm_hugepages(struct file *file);
|
|
|
+bool is_file_shm_hugepages(struct file *file);
|
|
|
void exit_shm(struct task_struct *task);
|
|
|
#define shm_init_task(task) INIT_LIST_HEAD(&(task)->sysvshm.shm_clist)
|
|
|
#else
|
|
@@ -66,9 +66,9 @@ static inline long do_shmat(int shmid, char __user *shmaddr,
|
|
|
{
|
|
|
return -ENOSYS;
|
|
|
}
|
|
|
-static inline int is_file_shm_hugepages(struct file *file)
|
|
|
+static inline bool is_file_shm_hugepages(struct file *file)
|
|
|
{
|
|
|
- return 0;
|
|
|
+ return false;
|
|
|
}
|
|
|
static inline void exit_shm(struct task_struct *task)
|
|
|
{
|