Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 481f7337 authored by Eric W. Biederman's avatar Eric W. Biederman Committed by Linus Torvalds
Browse files

[PATCH] sysctl: s390: remove unnecessary use of insert_at_head

parent feceb63e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -506,7 +506,7 @@ int appldata_register_ops(struct appldata_ops *ops)

	ops->ctl_table[3].ctl_name = 0;

	ops->sysctl_header = register_sysctl_table(ops->ctl_table,1);
	ops->sysctl_header = register_sysctl_table(ops->ctl_table,0);

	P_INFO("%s-ops registered!\n", ops->name);
	return 0;
@@ -606,7 +606,7 @@ static int __init appldata_init(void)
	/* Register cpu hotplug notifier */
	register_hotcpu_notifier(&appldata_nb);

	appldata_sysctl_header = register_sysctl_table(appldata_dir_table, 1);
	appldata_sysctl_header = register_sysctl_table(appldata_dir_table, 0);
#ifdef MODULE
	appldata_dir_table[0].de->owner = THIS_MODULE;
	appldata_table[0].de->owner = THIS_MODULE;
+1 −1
Original line number Diff line number Diff line
@@ -1053,7 +1053,7 @@ __init debug_init(void)
{
	int rc = 0;

	s390dbf_sysctl_header = register_sysctl_table(s390dbf_dir_table, 1);
	s390dbf_sysctl_header = register_sysctl_table(s390dbf_dir_table, 0);
	down(&debug_lock);
	debug_debugfs_root_entry = debugfs_create_dir(DEBUG_DIR_ROOT,NULL);
	printk(KERN_INFO "debug: Initialization complete\n");
+1 −1
Original line number Diff line number Diff line
@@ -418,7 +418,7 @@ cmm_init (void)
	int rc = -ENOMEM;

#ifdef CONFIG_CMM_PROC
	cmm_sysctl_header = register_sysctl_table(cmm_dir_table, 1);
	cmm_sysctl_header = register_sysctl_table(cmm_dir_table, 0);
	if (!cmm_sysctl_header)
		goto out;
#endif