diff options
Diffstat (limited to 'fs/proc/internal.h')
| -rw-r--r-- | fs/proc/internal.h | 25 | 
1 files changed, 9 insertions, 16 deletions
diff --git a/fs/proc/internal.h b/fs/proc/internal.h index da3dbfa09e79..5185d7f6a51e 100644 --- a/fs/proc/internal.h +++ b/fs/proc/internal.h @@ -65,16 +65,13 @@ struct proc_dir_entry {  	char inline_name[];  } __randomize_layout; -#define OFFSETOF_PDE_NAME offsetof(struct proc_dir_entry, inline_name) -#define SIZEOF_PDE_SLOT					\ -	(OFFSETOF_PDE_NAME + 34 <= 64 ? 64 :		\ -	 OFFSETOF_PDE_NAME + 34 <= 128 ? 128 :		\ -	 OFFSETOF_PDE_NAME + 34 <= 192 ? 192 :		\ -	 OFFSETOF_PDE_NAME + 34 <= 256 ? 256 :		\ -	 OFFSETOF_PDE_NAME + 34 <= 512 ? 512 :		\ -	 0) - -#define SIZEOF_PDE_INLINE_NAME (SIZEOF_PDE_SLOT - OFFSETOF_PDE_NAME) +#define SIZEOF_PDE	(				\ +	sizeof(struct proc_dir_entry) < 128 ? 128 :	\ +	sizeof(struct proc_dir_entry) < 192 ? 192 :	\ +	sizeof(struct proc_dir_entry) < 256 ? 256 :	\ +	sizeof(struct proc_dir_entry) < 512 ? 512 :	\ +	0) +#define SIZEOF_PDE_INLINE_NAME (SIZEOF_PDE - sizeof(struct proc_dir_entry))  extern struct kmem_cache *proc_dir_entry_cache;  void pde_free(struct proc_dir_entry *pde); @@ -116,12 +113,12 @@ static inline void *__PDE_DATA(const struct inode *inode)  	return PDE(inode)->data;  } -static inline struct pid *proc_pid(struct inode *inode) +static inline struct pid *proc_pid(const struct inode *inode)  {  	return PROC_I(inode)->pid;  } -static inline struct task_struct *get_proc_task(struct inode *inode) +static inline struct task_struct *get_proc_task(const struct inode *inode)  {  	return get_pid_task(proc_pid(inode), PIDTYPE_PID);  } @@ -285,7 +282,6 @@ struct proc_maps_private {  	struct inode *inode;  	struct task_struct *task;  	struct mm_struct *mm; -	struct mem_size_stats *rollup;  #ifdef CONFIG_MMU  	struct vm_area_struct *tail_vma;  #endif @@ -297,12 +293,9 @@ struct proc_maps_private {  struct mm_struct *proc_mem_open(struct inode *inode, unsigned int mode);  extern const struct file_operations proc_pid_maps_operations; -extern const struct file_operations proc_tid_maps_operations;  extern const struct file_operations proc_pid_numa_maps_operations; -extern const struct file_operations proc_tid_numa_maps_operations;  extern const struct file_operations proc_pid_smaps_operations;  extern const struct file_operations proc_pid_smaps_rollup_operations; -extern const struct file_operations proc_tid_smaps_operations;  extern const struct file_operations proc_clear_refs_operations;  extern const struct file_operations proc_pagemap_operations;  |