2 * Copyright (C) 2003 Christoph Hellwig.
3 * Released under GPL v2.
6 #include <linux/errno.h>
7 #include <linux/init.h>
8 #include <linux/kernel.h>
9 #include <linux/sysctl.h>
11 #include "scsi_logging.h"
12 #include "scsi_priv.h"
15 static ctl_table scsi_table
[] = {
16 { .ctl_name
= DEV_SCSI_LOGGING_LEVEL
,
17 .procname
= "logging_level",
18 .data
= &scsi_logging_level
,
19 .maxlen
= sizeof(scsi_logging_level
),
21 .proc_handler
= &proc_dointvec
},
25 static ctl_table scsi_dir_table
[] = {
26 { .ctl_name
= DEV_SCSI
,
29 .child
= scsi_table
},
33 static ctl_table scsi_root_table
[] = {
34 { .ctl_name
= CTL_DEV
,
37 .child
= scsi_dir_table
},
41 static struct ctl_table_header
*scsi_table_header
;
43 int __init
scsi_init_sysctl(void)
45 scsi_table_header
= register_sysctl_table(scsi_root_table
);
46 if (!scsi_table_header
)
51 void scsi_exit_sysctl(void)
53 unregister_sysctl_table(scsi_table_header
);