|
@@ -63,7 +63,6 @@
|
|
* have a way to deal with that gracefully. Right now I used straightforward
|
|
* have a way to deal with that gracefully. Right now I used straightforward
|
|
* wrappers, but this needs further analysis wrt potential overflows.
|
|
* wrappers, but this needs further analysis wrt potential overflows.
|
|
*/
|
|
*/
|
|
-extern int get_exec_domain_list(char *);
|
|
|
|
|
|
|
|
static int proc_calc_metrics(char *page, char **start, off_t off,
|
|
static int proc_calc_metrics(char *page, char **start, off_t off,
|
|
int count, int *eof, int len)
|
|
int count, int *eof, int len)
|
|
@@ -486,13 +485,6 @@ static const struct file_operations proc_locks_operations = {
|
|
};
|
|
};
|
|
#endif /* CONFIG_FILE_LOCKING */
|
|
#endif /* CONFIG_FILE_LOCKING */
|
|
|
|
|
|
-static int execdomains_read_proc(char *page, char **start, off_t off,
|
|
|
|
- int count, int *eof, void *data)
|
|
|
|
-{
|
|
|
|
- int len = get_exec_domain_list(page);
|
|
|
|
- return proc_calc_metrics(page, start, off, count, eof, len);
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
#ifdef CONFIG_PROC_PAGE_MONITOR
|
|
#ifdef CONFIG_PROC_PAGE_MONITOR
|
|
#define KPMSIZE sizeof(u64)
|
|
#define KPMSIZE sizeof(u64)
|
|
#define KPMMASK (KPMSIZE - 1)
|
|
#define KPMMASK (KPMSIZE - 1)
|
|
@@ -632,7 +624,6 @@ void __init proc_misc_init(void)
|
|
char *name;
|
|
char *name;
|
|
int (*read_proc)(char*,char**,off_t,int,int*,void*);
|
|
int (*read_proc)(char*,char**,off_t,int,int*,void*);
|
|
} *p, simple_ones[] = {
|
|
} *p, simple_ones[] = {
|
|
- {"execdomains", execdomains_read_proc},
|
|
|
|
{NULL,}
|
|
{NULL,}
|
|
};
|
|
};
|
|
for (p = simple_ones; p->name; p++)
|
|
for (p = simple_ones; p->name; p++)
|