diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2009-12-17 11:43:14 -0600 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2009-12-17 11:43:16 +1030 |
commit | 6957177f5c3c0e51b9e90a1d7fadb3177a333949 (patch) | |
tree | 05ccc4cbae22790febff76f7d553de5bb8d9a2f5 /drivers/scsi | |
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')
-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 a30ffaa1222..51c24b37c60 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, "CPU.\n"); spin_unlock_bh(&fps->fcoe_rx_list.lock); - cpu = first_cpu(cpu_online_map); + cpu = cpumask_first(cpu_online_mask); fps = &per_cpu(fcoe_percpu, cpu); spin_lock_bh(&fps->fcoe_rx_list.lock); if (!fps->thread) { |