|
@@ -893,35 +893,30 @@ s390dbf_procactive(ctl_table *table, int write,
|
|
|
|
|
|
static struct ctl_table s390dbf_table[] = {
|
|
static struct ctl_table s390dbf_table[] = {
|
|
{
|
|
{
|
|
- .ctl_name = CTL_S390DBF_STOPPABLE,
|
|
|
|
.procname = "debug_stoppable",
|
|
.procname = "debug_stoppable",
|
|
.data = &debug_stoppable,
|
|
.data = &debug_stoppable,
|
|
.maxlen = sizeof(int),
|
|
.maxlen = sizeof(int),
|
|
.mode = S_IRUGO | S_IWUSR,
|
|
.mode = S_IRUGO | S_IWUSR,
|
|
.proc_handler = &proc_dointvec,
|
|
.proc_handler = &proc_dointvec,
|
|
- .strategy = &sysctl_intvec,
|
|
|
|
},
|
|
},
|
|
{
|
|
{
|
|
- .ctl_name = CTL_S390DBF_ACTIVE,
|
|
|
|
.procname = "debug_active",
|
|
.procname = "debug_active",
|
|
.data = &debug_active,
|
|
.data = &debug_active,
|
|
.maxlen = sizeof(int),
|
|
.maxlen = sizeof(int),
|
|
.mode = S_IRUGO | S_IWUSR,
|
|
.mode = S_IRUGO | S_IWUSR,
|
|
.proc_handler = &s390dbf_procactive,
|
|
.proc_handler = &s390dbf_procactive,
|
|
- .strategy = &sysctl_intvec,
|
|
|
|
},
|
|
},
|
|
- { .ctl_name = 0 }
|
|
|
|
|
|
+ { }
|
|
};
|
|
};
|
|
|
|
|
|
static struct ctl_table s390dbf_dir_table[] = {
|
|
static struct ctl_table s390dbf_dir_table[] = {
|
|
{
|
|
{
|
|
- .ctl_name = CTL_S390DBF,
|
|
|
|
.procname = "s390dbf",
|
|
.procname = "s390dbf",
|
|
.maxlen = 0,
|
|
.maxlen = 0,
|
|
.mode = S_IRUGO | S_IXUGO,
|
|
.mode = S_IRUGO | S_IXUGO,
|
|
.child = s390dbf_table,
|
|
.child = s390dbf_table,
|
|
},
|
|
},
|
|
- { .ctl_name = 0 }
|
|
|
|
|
|
+ { }
|
|
};
|
|
};
|
|
|
|
|
|
static struct ctl_table_header *s390dbf_sysctl_header;
|
|
static struct ctl_table_header *s390dbf_sysctl_header;
|