|
@@ -57,19 +57,6 @@
|
|
#include <asm/div64.h>
|
|
#include <asm/div64.h>
|
|
#include "internal.h"
|
|
#include "internal.h"
|
|
|
|
|
|
-#ifdef CONFIG_BLOCK
|
|
|
|
-static int diskstats_open(struct inode *inode, struct file *file)
|
|
|
|
-{
|
|
|
|
- return seq_open(file, &diskstats_op);
|
|
|
|
-}
|
|
|
|
-static const struct file_operations proc_diskstats_operations = {
|
|
|
|
- .open = diskstats_open,
|
|
|
|
- .read = seq_read,
|
|
|
|
- .llseek = seq_lseek,
|
|
|
|
- .release = seq_release,
|
|
|
|
-};
|
|
|
|
-#endif
|
|
|
|
-
|
|
|
|
#ifdef CONFIG_MODULES
|
|
#ifdef CONFIG_MODULES
|
|
extern const struct seq_operations modules_op;
|
|
extern const struct seq_operations modules_op;
|
|
static int modules_open(struct inode *inode, struct file *file)
|
|
static int modules_open(struct inode *inode, struct file *file)
|
|
@@ -222,9 +209,6 @@ void __init proc_misc_init(void)
|
|
proc_symlink("mounts", NULL, "self/mounts");
|
|
proc_symlink("mounts", NULL, "self/mounts");
|
|
|
|
|
|
/* And now for trickier ones */
|
|
/* And now for trickier ones */
|
|
-#ifdef CONFIG_BLOCK
|
|
|
|
- proc_create("diskstats", 0, NULL, &proc_diskstats_operations);
|
|
|
|
-#endif
|
|
|
|
#ifdef CONFIG_MODULES
|
|
#ifdef CONFIG_MODULES
|
|
proc_create("modules", 0, NULL, &proc_modules_operations);
|
|
proc_create("modules", 0, NULL, &proc_modules_operations);
|
|
#endif
|
|
#endif
|