Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 254055
b: refs/heads/master
c: 859c965
h: refs/heads/master
i:
  254053: d79d766
  254051: dafdfc7
  254047: a9be87c
v: v3
  • Loading branch information
Jan Glauber authored and Martin Schwidefsky committed Jun 22, 2011
1 parent e04f09e commit 5e0706a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 6815823431296082fa20c2f14007e194424660b8
refs/heads/master: 859c965149ab5004b58b1fffd98190b6664cb717
4 changes: 2 additions & 2 deletions trunk/arch/s390/kernel/smp.c
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ void smp_ctl_set_bit(int cr, int bit)

memset(&parms.orvals, 0, sizeof(parms.orvals));
memset(&parms.andvals, 0xff, sizeof(parms.andvals));
parms.orvals[cr] = 1 << bit;
parms.orvals[cr] = 1UL << bit;
on_each_cpu(smp_ctl_bit_callback, &parms, 1);
}
EXPORT_SYMBOL(smp_ctl_set_bit);
Expand All @@ -276,7 +276,7 @@ void smp_ctl_clear_bit(int cr, int bit)

memset(&parms.orvals, 0, sizeof(parms.orvals));
memset(&parms.andvals, 0xff, sizeof(parms.andvals));
parms.andvals[cr] = ~(1L << bit);
parms.andvals[cr] = ~(1UL << bit);
on_each_cpu(smp_ctl_bit_callback, &parms, 1);
}
EXPORT_SYMBOL(smp_ctl_clear_bit);
Expand Down

0 comments on commit 5e0706a

Please sign in to comment.