diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2009-12-17 12:43:14 -0500 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2009-12-16 20:13:16 -0500 |
commit | 6957177f5c3c0e51b9e90a1d7fadb3177a333949 (patch) | |
tree | 05ccc4cbae22790febff76f7d553de5bb8d9a2f5 /drivers/scsi/fcoe | |
parent | 58463c1fe25f7c4183f30f06a5a86cb6cd9d8231 (diff) |
cpumask: use modern cpumask style in drivers/scsi/fcoe/fcoe.c
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Cc: "James E.J. Bottomley" <James.Bottomley@suse.de>
Cc: Robert Love <robert.w.love@intel.com>
Cc: Chris Leech <christopher.leech@intel.com>
Cc: linux-scsi@vger.kernel.org
Diffstat (limited to 'drivers/scsi/fcoe')
-rw-r--r-- | drivers/scsi/fcoe/fcoe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/fcoe/fcoe.c b/drivers/scsi/fcoe/fcoe.c index a30ffaa1222c..51c24b37c60a 100644 --- a/drivers/scsi/fcoe/fcoe.c +++ b/drivers/scsi/fcoe/fcoe.c | |||
@@ -1231,7 +1231,7 @@ int fcoe_rcv(struct sk_buff *skb, struct net_device *netdev, | |||
1231 | "CPU.\n"); | 1231 | "CPU.\n"); |
1232 | 1232 | ||
1233 | spin_unlock_bh(&fps->fcoe_rx_list.lock); | 1233 | spin_unlock_bh(&fps->fcoe_rx_list.lock); |
1234 | cpu = first_cpu(cpu_online_map); | 1234 | cpu = cpumask_first(cpu_online_mask); |
1235 | fps = &per_cpu(fcoe_percpu, cpu); | 1235 | fps = &per_cpu(fcoe_percpu, cpu); |
1236 | spin_lock_bh(&fps->fcoe_rx_list.lock); | 1236 | spin_lock_bh(&fps->fcoe_rx_list.lock); |
1237 | if (!fps->thread) { | 1237 | if (!fps->thread) { |