Skip to content

Commit

Permalink
proc: Kill create_proc_entry()
Browse files Browse the repository at this point in the history
Kill create_proc_entry() in favour of create_proc_read_entry(), proc_create()
and proc_create_data().

Signed-off-by: David Howells <[email protected]>
  • Loading branch information
dhowells authored and Al Viro committed Apr 9, 2013
1 parent 3cba537 commit 80e928f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 18 deletions.
9 changes: 6 additions & 3 deletions fs/proc/generic.c
Original file line number Diff line number Diff line change
Expand Up @@ -650,8 +650,9 @@ struct proc_dir_entry *proc_mkdir(const char *name,
}
EXPORT_SYMBOL(proc_mkdir);

struct proc_dir_entry *create_proc_entry(const char *name, umode_t mode,
struct proc_dir_entry *parent)
struct proc_dir_entry *create_proc_read_entry(
const char *name, umode_t mode, struct proc_dir_entry *parent,
read_proc_t *read_proc, void *data)
{
struct proc_dir_entry *ent;

Expand All @@ -668,14 +669,16 @@ struct proc_dir_entry *create_proc_entry(const char *name, umode_t mode,

ent = __proc_create(&parent, name, mode, 1);
if (ent) {
ent->read_proc = read_proc;
ent->data = data;
if (proc_register(parent, ent) < 0) {
kfree(ent);
ent = NULL;
}
}
return ent;
}
EXPORT_SYMBOL(create_proc_entry);
EXPORT_SYMBOL(create_proc_read_entry);

struct proc_dir_entry *proc_create_data(const char *name, umode_t mode,
struct proc_dir_entry *parent,
Expand Down
17 changes: 2 additions & 15 deletions include/linux/proc_fs.h
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,6 @@ extern void proc_root_init(void);

void proc_flush_task(struct task_struct *task);

extern struct proc_dir_entry *create_proc_entry(const char *name, umode_t mode,
struct proc_dir_entry *parent);
struct proc_dir_entry *proc_create_data(const char *name, umode_t mode,
struct proc_dir_entry *parent,
const struct file_operations *proc_fops,
Expand Down Expand Up @@ -164,17 +162,9 @@ static inline struct proc_dir_entry *proc_create(const char *name, umode_t mode,
return proc_create_data(name, mode, parent, proc_fops, NULL);
}

static inline struct proc_dir_entry *create_proc_read_entry(const char *name,
extern struct proc_dir_entry *create_proc_read_entry(const char *name,
umode_t mode, struct proc_dir_entry *base,
read_proc_t *read_proc, void * data)
{
struct proc_dir_entry *res=create_proc_entry(name,mode,base);
if (res) {
res->read_proc=read_proc;
res->data=data;
}
return res;
}
read_proc_t *read_proc, void *data);

extern struct proc_dir_entry *proc_net_mkdir(struct net *net, const char *name,
struct proc_dir_entry *parent);
Expand All @@ -190,9 +180,6 @@ static inline void proc_flush_task(struct task_struct *task)
{
}

static inline struct proc_dir_entry *create_proc_entry(const char *name,
umode_t mode, struct proc_dir_entry *parent) { return NULL; }

#define proc_create(name, mode, parent, fops) ({ (void)(mode), NULL; })

static inline struct proc_dir_entry *proc_create_data(const char *name,
Expand Down

0 comments on commit 80e928f

Please sign in to comment.