Commit 5db79c06 authored by Ursula Braun's avatar Ursula Braun Committed by David S. Miller

iucv: get rid of compile warning

-Wunused-but-set-variable generates a compile warning. The affected
variable is removed.
Signed-off-by: default avatarUrsula Braun <ursula.braun@de.ibm.com>
Signed-off-by: default avatarFrank Blaschka <frank.blaschka@de.ibm.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent ff2aed7d
...@@ -828,14 +828,14 @@ EXPORT_SYMBOL(iucv_unregister); ...@@ -828,14 +828,14 @@ EXPORT_SYMBOL(iucv_unregister);
static int iucv_reboot_event(struct notifier_block *this, static int iucv_reboot_event(struct notifier_block *this,
unsigned long event, void *ptr) unsigned long event, void *ptr)
{ {
int i, rc; int i;
get_online_cpus(); get_online_cpus();
on_each_cpu(iucv_block_cpu, NULL, 1); on_each_cpu(iucv_block_cpu, NULL, 1);
preempt_disable(); preempt_disable();
for (i = 0; i < iucv_max_pathid; i++) { for (i = 0; i < iucv_max_pathid; i++) {
if (iucv_path_table[i]) if (iucv_path_table[i])
rc = iucv_sever_pathid(i, NULL); iucv_sever_pathid(i, NULL);
} }
preempt_enable(); preempt_enable();
put_online_cpus(); put_online_cpus();
......
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