diff options
author | David Howells <dhowells@redhat.com> | 2013-04-11 20:08:50 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2013-05-01 17:29:39 -0400 |
commit | 1dd704b6175f067781807ad4da1b878357dc9755 (patch) | |
tree | 654f8494b04c0e630edfb4e9da2a50fcaa341b57 /fs/proc | |
parent | 271a15eabe094538d958dc68ccfc9c36b699247a (diff) |
proc: Uninline pid_delete_dentry()
Uninline pid_delete_dentry() as it's only used by three function pointers.
Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/proc')
-rw-r--r-- | fs/proc/base.c | 9 | ||||
-rw-r--r-- | fs/proc/internal.h | 14 |
2 files changed, 14 insertions, 9 deletions
diff --git a/fs/proc/base.c b/fs/proc/base.c index 593e7c5ddb49..f2637c972160 100644 --- a/fs/proc/base.c +++ b/fs/proc/base.c | |||
@@ -1621,6 +1621,15 @@ int pid_revalidate(struct dentry *dentry, unsigned int flags) | |||
1621 | return 0; | 1621 | return 0; |
1622 | } | 1622 | } |
1623 | 1623 | ||
1624 | int pid_delete_dentry(const struct dentry *dentry) | ||
1625 | { | ||
1626 | /* Is the task we represent dead? | ||
1627 | * If so, then don't put the dentry on the lru list, | ||
1628 | * kill it immediately. | ||
1629 | */ | ||
1630 | return !proc_pid(dentry->d_inode)->tasks[PIDTYPE_PID].first; | ||
1631 | } | ||
1632 | |||
1624 | const struct dentry_operations pid_dentry_operations = | 1633 | const struct dentry_operations pid_dentry_operations = |
1625 | { | 1634 | { |
1626 | .d_revalidate = pid_revalidate, | 1635 | .d_revalidate = pid_revalidate, |
diff --git a/fs/proc/internal.h b/fs/proc/internal.h index 4b13417acfc4..aaf2dd8c2b10 100644 --- a/fs/proc/internal.h +++ b/fs/proc/internal.h | |||
@@ -114,15 +114,6 @@ static inline int task_dumpable(struct task_struct *task) | |||
114 | return 0; | 114 | return 0; |
115 | } | 115 | } |
116 | 116 | ||
117 | static inline int pid_delete_dentry(const struct dentry * dentry) | ||
118 | { | ||
119 | /* Is the task we represent dead? | ||
120 | * If so, then don't put the dentry on the lru list, | ||
121 | * kill it immediately. | ||
122 | */ | ||
123 | return !proc_pid(dentry->d_inode)->tasks[PIDTYPE_PID].first; | ||
124 | } | ||
125 | |||
126 | static inline unsigned name_to_int(struct dentry *dentry) | 117 | static inline unsigned name_to_int(struct dentry *dentry) |
127 | { | 118 | { |
128 | const char *name = dentry->d_name.name; | 119 | const char *name = dentry->d_name.name; |
@@ -145,6 +136,11 @@ out: | |||
145 | return ~0U; | 136 | return ~0U; |
146 | } | 137 | } |
147 | 138 | ||
139 | /* | ||
140 | * base.c | ||
141 | */ | ||
142 | extern int pid_delete_dentry(const struct dentry *); | ||
143 | |||
148 | struct dentry *proc_lookup_de(struct proc_dir_entry *de, struct inode *ino, | 144 | struct dentry *proc_lookup_de(struct proc_dir_entry *de, struct inode *ino, |
149 | struct dentry *dentry); | 145 | struct dentry *dentry); |
150 | int proc_readdir_de(struct proc_dir_entry *de, struct file *filp, void *dirent, | 146 | int proc_readdir_de(struct proc_dir_entry *de, struct file *filp, void *dirent, |