2019-05-29 01:10:12 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2003 Christoph Hellwig.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/sysctl.h>
|
|
|
|
|
|
|
|
#include "scsi_logging.h"
|
2007-07-10 02:59:59 +08:00
|
|
|
#include "scsi_priv.h"
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
|
2014-06-07 05:37:59 +08:00
|
|
|
static struct ctl_table scsi_table[] = {
|
2009-11-06 06:34:02 +08:00
|
|
|
{ .procname = "logging_level",
|
2005-04-17 06:20:36 +08:00
|
|
|
.data = &scsi_logging_level,
|
|
|
|
.maxlen = sizeof(scsi_logging_level),
|
|
|
|
.mode = 0644,
|
2009-11-16 19:11:48 +08:00
|
|
|
.proc_handler = proc_dointvec },
|
2005-04-17 06:20:36 +08:00
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
2014-06-07 05:37:59 +08:00
|
|
|
static struct ctl_table scsi_dir_table[] = {
|
2009-11-06 06:34:02 +08:00
|
|
|
{ .procname = "scsi",
|
2005-04-17 06:20:36 +08:00
|
|
|
.mode = 0555,
|
|
|
|
.child = scsi_table },
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
2014-06-07 05:37:59 +08:00
|
|
|
static struct ctl_table scsi_root_table[] = {
|
2009-11-06 06:34:02 +08:00
|
|
|
{ .procname = "dev",
|
2005-04-17 06:20:36 +08:00
|
|
|
.mode = 0555,
|
|
|
|
.child = scsi_dir_table },
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct ctl_table_header *scsi_table_header;
|
|
|
|
|
|
|
|
int __init scsi_init_sysctl(void)
|
|
|
|
{
|
2007-02-14 16:34:09 +08:00
|
|
|
scsi_table_header = register_sysctl_table(scsi_root_table);
|
2005-04-17 06:20:36 +08:00
|
|
|
if (!scsi_table_header)
|
|
|
|
return -ENOMEM;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void scsi_exit_sysctl(void)
|
|
|
|
{
|
|
|
|
unregister_sysctl_table(scsi_table_header);
|
|
|
|
}
|