[2.6 patch] fs/proc/: function prototypes belong into header files

From: Adrian Bunk
Date: Sat Dec 03 2005 - 07:16:24 EST


Function prototypes belong into header files.


Signed-off-by: Adrian Bunk <bunk@xxxxxxxxx>

---

fs/proc/generic.c | 2 ++
fs/proc/inode.c | 2 +-
fs/proc/internal.h | 4 ++++
fs/proc/root.c | 3 ++-
4 files changed, 9 insertions(+), 2 deletions(-)

--- linux-2.6.15-rc3-mm1/fs/proc/internal.h.old 2005-12-03 11:28:20.000000000 +0100
+++ linux-2.6.15-rc3-mm1/fs/proc/internal.h 2005-12-03 11:30:53.000000000 +0100
@@ -37,6 +37,10 @@
extern int proc_pid_status(struct task_struct *, char *);
extern int proc_pid_statm(struct task_struct *, char *);

+void free_proc_entry(struct proc_dir_entry *de);
+
+int proc_init_inodecache(void);
+
static inline struct task_struct *proc_task(struct inode *inode)
{
return PROC_I(inode)->task;
--- linux-2.6.15-rc3-mm1/fs/proc/root.c.old 2005-12-03 11:28:41.000000000 +0100
+++ linux-2.6.15-rc3-mm1/fs/proc/root.c 2005-12-03 11:29:15.000000000 +0100
@@ -18,6 +18,8 @@
#include <linux/bitops.h>
#include <linux/smp_lock.h>

+#include "internal.h"
+
struct proc_dir_entry *proc_net, *proc_net_stat, *proc_bus, *proc_root_fs, *proc_root_driver;

#ifdef CONFIG_SYSCTL
@@ -36,7 +38,6 @@
.kill_sb = kill_anon_super,
};

-extern int __init proc_init_inodecache(void);
void __init proc_root_init(void)
{
int err = proc_init_inodecache();
--- linux-2.6.15-rc3-mm1/fs/proc/inode.c.old 2005-12-03 11:29:30.000000000 +0100
+++ linux-2.6.15-rc3-mm1/fs/proc/inode.c 2005-12-03 11:30:55.000000000 +0100
@@ -19,7 +19,7 @@
#include <asm/system.h>
#include <asm/uaccess.h>

-extern void free_proc_entry(struct proc_dir_entry *);
+#include "internal.h"

static inline struct proc_dir_entry * de_get(struct proc_dir_entry *de)
{
--- linux-2.6.15-rc3-mm1/fs/proc/generic.c.old 2005-12-03 11:29:59.000000000 +0100
+++ linux-2.6.15-rc3-mm1/fs/proc/generic.c 2005-12-03 11:30:34.000000000 +0100
@@ -21,6 +21,8 @@
#include <linux/bitops.h>
#include <asm/uaccess.h>

+#include "internal.h"
+
static ssize_t proc_file_read(struct file *file, char __user *buf,
size_t nbytes, loff_t *ppos);
static ssize_t proc_file_write(struct file *file, const char __user *buffer,

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/