Commit 3092242c authored by Oleg Drokin's avatar Oleg Drokin Committed by Greg Kroah-Hartman

staging/lustre/libcfs: Get rid of /proc references in comments

Now that the sysfs conversion is complete, also convert all the
remaining comments
Signed-off-by: default avatarOleg Drokin <green@linuxhacker.ru>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 406c1c7c
...@@ -87,7 +87,7 @@ void libcfs_run_debug_log_upcall(char *file) ...@@ -87,7 +87,7 @@ void libcfs_run_debug_log_upcall(char *file)
rc = call_usermodehelper(argv[0], argv, envp, 1); rc = call_usermodehelper(argv[0], argv, envp, 1);
if (rc < 0 && rc != -ENOENT) { if (rc < 0 && rc != -ENOENT) {
CERROR("Error %d invoking LNET debug log upcall %s %s; check /proc/sys/lnet/debug_log_upcall\n", CERROR("Error %d invoking LNET debug log upcall %s %s; check /sys/kernel/debug/lnet/debug_log_upcall\n",
rc, argv[0], argv[1]); rc, argv[0], argv[1]);
} else { } else {
CDEBUG(D_HA, "Invoked LNET debug log upcall %s %s\n", CDEBUG(D_HA, "Invoked LNET debug log upcall %s %s\n",
...@@ -113,7 +113,7 @@ void libcfs_run_upcall(char **argv) ...@@ -113,7 +113,7 @@ void libcfs_run_upcall(char **argv)
rc = call_usermodehelper(argv[0], argv, envp, 1); rc = call_usermodehelper(argv[0], argv, envp, 1);
if (rc < 0 && rc != -ENOENT) { if (rc < 0 && rc != -ENOENT) {
CERROR("Error %d invoking LNET upcall %s %s%s%s%s%s%s%s%s; check /proc/sys/lnet/upcall\n", CERROR("Error %d invoking LNET upcall %s %s%s%s%s%s%s%s%s; check /sys/kernel/debug/lnet/upcall\n",
rc, argv[0], argv[1], rc, argv[0], argv[1],
argc < 3 ? "" : ",", argc < 3 ? "" : argv[2], argc < 3 ? "" : ",", argc < 3 ? "" : argv[2],
argc < 4 ? "" : ",", argc < 4 ? "" : argv[3], argc < 4 ? "" : ",", argc < 4 ? "" : argv[3],
......
...@@ -368,10 +368,6 @@ static int proc_cpt_table(struct ctl_table *table, int write, ...@@ -368,10 +368,6 @@ static int proc_cpt_table(struct ctl_table *table, int write,
} }
static struct ctl_table lnet_table[] = { static struct ctl_table lnet_table[] = {
/*
* NB No .strategy entries have been provided since sysctl(8) prefers
* to go via /proc for portability.
*/
{ {
.procname = "debug", .procname = "debug",
.data = &libcfs_debug, .data = &libcfs_debug,
......
...@@ -771,9 +771,10 @@ EXPORT_SYMBOL(cfs_trace_copyin_string); ...@@ -771,9 +771,10 @@ EXPORT_SYMBOL(cfs_trace_copyin_string);
int cfs_trace_copyout_string(char __user *usr_buffer, int usr_buffer_nob, int cfs_trace_copyout_string(char __user *usr_buffer, int usr_buffer_nob,
const char *knl_buffer, char *append) const char *knl_buffer, char *append)
{ {
/* NB if 'append' != NULL, it's a single character to append to the /*
* copied out string - usually "\n", for /proc entries and "" (i.e. a * NB if 'append' != NULL, it's a single character to append to the
* terminating zero byte) for sysctl entries */ * copied out string - usually "\n" or "" (i.e. a terminating zero byte)
*/
int nob = strlen(knl_buffer); int nob = strlen(knl_buffer);
if (nob > usr_buffer_nob) if (nob > usr_buffer_nob)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment