net/mlx4_en: Use access helper irq_data_get_affinity_mask()
This is a preparatory patch for moving irq_data struct members. Search and replace was done with coccinelle Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: Julia Lawall <Julia.Lawall@lip6.fr> Cc: Jiang Liu <jiang.liu@linux.intel.com> Cc: Amir Vadai <amirv@mellanox.com>
This commit is contained in:
parent
da92b4eb7e
commit
dc2ec62f75
|
@ -1047,13 +1047,15 @@ int mlx4_en_poll_rx_cq(struct napi_struct *napi, int budget)
|
||||||
|
|
||||||
/* If we used up all the quota - we're probably not done yet... */
|
/* If we used up all the quota - we're probably not done yet... */
|
||||||
if (done == budget) {
|
if (done == budget) {
|
||||||
int cpu_curr;
|
|
||||||
const struct cpumask *aff;
|
const struct cpumask *aff;
|
||||||
|
struct irq_data *idata;
|
||||||
|
int cpu_curr;
|
||||||
|
|
||||||
INC_PERF_COUNTER(priv->pstats.napi_quota);
|
INC_PERF_COUNTER(priv->pstats.napi_quota);
|
||||||
|
|
||||||
cpu_curr = smp_processor_id();
|
cpu_curr = smp_processor_id();
|
||||||
aff = irq_desc_get_irq_data(cq->irq_desc)->affinity;
|
idata = irq_desc_get_irq_data(cq->irq_desc);
|
||||||
|
aff = irq_data_get_affinity_mask(idata);
|
||||||
|
|
||||||
if (likely(cpumask_test_cpu(cpu_curr, aff)))
|
if (likely(cpumask_test_cpu(cpu_curr, aff)))
|
||||||
return budget;
|
return budget;
|
||||||
|
|
Loading…
Reference in New Issue