Skip to content

Commit fb65a7c

Browse files
committed
iucv: Fix bad merging.
Noticed by Stephen Rothwell. Signed-off-by: David S. Miller <davem@davemloft.net>
1 parent 175f9c1 commit fb65a7c

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

net/iucv/iucv.c

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -523,12 +523,8 @@ static int iucv_enable(void)
523523
rc = -EIO;
524524
get_online_cpus();
525525
for_each_online_cpu(cpu)
526-
<<<<<<< HEAD:net/iucv/iucv.c
527-
smp_call_function_single(cpu, iucv_declare_cpu, NULL, 0, 1);
528-
=======
529526
smp_call_function_single(cpu, iucv_declare_cpu, NULL, 1);
530527
preempt_enable();
531-
>>>>>>> 5b664cb235e97afbf34db9c4d77f08ebd725335e:net/iucv/iucv.c
532528
if (cpus_empty(iucv_buffer_cpumask))
533529
/* No cpu could declare an iucv buffer. */
534530
goto out_path;
@@ -551,13 +547,7 @@ static int iucv_enable(void)
551547
*/
552548
static void iucv_disable(void)
553549
{
554-
<<<<<<< HEAD:net/iucv/iucv.c
555-
get_online_cpus();
556-
on_each_cpu(iucv_retrieve_cpu, NULL, 0, 1);
557-
put_online_cpus();
558-
=======
559550
on_each_cpu(iucv_retrieve_cpu, NULL, 1);
560-
>>>>>>> 5b664cb235e97afbf34db9c4d77f08ebd725335e:net/iucv/iucv.c
561551
kfree(iucv_path_table);
562552
}
563553

0 commit comments

Comments
 (0)