Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 257828
b: refs/heads/master
c: 064287e
h: refs/heads/master
v: v3
  • Loading branch information
Kiran Patil authored and James Bottomley committed Jun 29, 2011
1 parent 9fa48ed commit eb9d93e
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 2 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: 1ff9918b625457ce20d450d00f9ed0a12ba191b7
refs/heads/master: 064287eee372e8a2effe77fb909a40da9e7a1fd7
39 changes: 38 additions & 1 deletion trunk/drivers/scsi/fcoe/fcoe.c
Original file line number Diff line number Diff line change
Expand Up @@ -1244,6 +1244,36 @@ static int fcoe_cpu_callback(struct notifier_block *nfb,
return NOTIFY_OK;
}

/**
* fcoe_select_cpu() - Selects CPU to handle post-processing of incoming
* command.
* @curr_cpu: CPU which received request
*
* This routine selects next CPU based on cpumask.
*
* Returns: int (CPU number). Caller to verify if returned CPU is online or not.
*/
static unsigned int fcoe_select_cpu(unsigned int curr_cpu)
{
static unsigned int selected_cpu;

if (num_online_cpus() == 1)
return curr_cpu;
/*
* Doing following check, to skip "curr_cpu (smp_processor_id)"
* from selection of CPU is intentional. This is to avoid same CPU
* doing post-processing of command. "curr_cpu" to just receive
* incoming request in case where rx_id is UNKNOWN and all other
* CPU to actually process the command(s)
*/
do {
selected_cpu = cpumask_next(selected_cpu, cpu_online_mask);
if (selected_cpu >= nr_cpu_ids)
selected_cpu = cpumask_first(cpu_online_mask);
} while (selected_cpu == curr_cpu);
return selected_cpu;
}

/**
* fcoe_rcv() - Receive packets from a net device
* @skb: The received packet
Expand Down Expand Up @@ -1320,9 +1350,16 @@ int fcoe_rcv(struct sk_buff *skb, struct net_device *netdev,
*/
if (ntoh24(fh->fh_f_ctl) & FC_FC_EX_CTX)
cpu = ntohs(fh->fh_ox_id) & fc_cpu_mask;
else
else {
cpu = smp_processor_id();

if ((fh->fh_type == FC_TYPE_FCP) &&
(ntohs(fh->fh_rx_id) == FC_XID_UNKNOWN)) {
do {
cpu = fcoe_select_cpu(cpu);
} while (!cpu_online(cpu));
}
}
fps = &per_cpu(fcoe_percpu, cpu);
spin_lock_bh(&fps->fcoe_rx_list.lock);
if (unlikely(!fps->thread)) {
Expand Down

0 comments on commit eb9d93e

Please sign in to comment.