Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 185694
b: refs/heads/master
c: 587d4a1
h: refs/heads/master
v: v3
  • Loading branch information
Helight.Xu authored and Al Viro committed Mar 3, 2010
1 parent 8b9c63a commit 1b1d012
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 193cf4b99113a4550598ba9e8343e591fc062e23
refs/heads/master: 587d4a17d837ac0f17edb26f1b6c80c0abda6343
5 changes: 5 additions & 0 deletions trunk/fs/proc/generic.c
Original file line number Diff line number Diff line change
Expand Up @@ -662,6 +662,7 @@ struct proc_dir_entry *proc_symlink(const char *name,
}
return ent;
}
EXPORT_SYMBOL(proc_symlink);

struct proc_dir_entry *proc_mkdir_mode(const char *name, mode_t mode,
struct proc_dir_entry *parent)
Expand Down Expand Up @@ -700,6 +701,7 @@ struct proc_dir_entry *proc_mkdir(const char *name,
{
return proc_mkdir_mode(name, S_IRUGO | S_IXUGO, parent);
}
EXPORT_SYMBOL(proc_mkdir);

struct proc_dir_entry *create_proc_entry(const char *name, mode_t mode,
struct proc_dir_entry *parent)
Expand Down Expand Up @@ -728,6 +730,7 @@ struct proc_dir_entry *create_proc_entry(const char *name, mode_t mode,
}
return ent;
}
EXPORT_SYMBOL(create_proc_entry);

struct proc_dir_entry *proc_create_data(const char *name, mode_t mode,
struct proc_dir_entry *parent,
Expand Down Expand Up @@ -762,6 +765,7 @@ struct proc_dir_entry *proc_create_data(const char *name, mode_t mode,
out:
return NULL;
}
EXPORT_SYMBOL(proc_create_data);

static void free_proc_entry(struct proc_dir_entry *de)
{
Expand Down Expand Up @@ -853,3 +857,4 @@ void remove_proc_entry(const char *name, struct proc_dir_entry *parent)
de->parent->name, de->name, de->subdir->name);
pde_put(de);
}
EXPORT_SYMBOL(remove_proc_entry);
6 changes: 0 additions & 6 deletions trunk/fs/proc/root.c
Original file line number Diff line number Diff line change
Expand Up @@ -220,9 +220,3 @@ void pid_ns_release_proc(struct pid_namespace *ns)
{
mntput(ns->proc_mnt);
}

EXPORT_SYMBOL(proc_symlink);
EXPORT_SYMBOL(proc_mkdir);
EXPORT_SYMBOL(create_proc_entry);
EXPORT_SYMBOL(proc_create_data);
EXPORT_SYMBOL(remove_proc_entry);

0 comments on commit 1b1d012

Please sign in to comment.