mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-18 17:54:13 +08:00
enic: unmask intr only when napi is complete
In case of busy poll, napi_complete_done returns false and does not dequeue napi. In this case do not unmask the intr. We are guaranteed napi is called again. This reduces unnecessary iowrites. Signed-off-by: Govindarajulu Varadarajan <gvaradar@cisco.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
f93e1cdcf4
commit
9acfd1c029
@ -1537,13 +1537,12 @@ static int enic_poll(struct napi_struct *napi, int budget)
|
||||
*/
|
||||
enic_calc_int_moderation(enic, &enic->rq[0]);
|
||||
|
||||
if (rq_work_done < rq_work_to_do) {
|
||||
if ((rq_work_done < budget) && napi_complete_done(napi, rq_work_done)) {
|
||||
|
||||
/* Some work done, but not enough to stay in polling,
|
||||
* exit polling
|
||||
*/
|
||||
|
||||
napi_complete_done(napi, rq_work_done);
|
||||
if (enic->rx_coalesce_setting.use_adaptive_rx_coalesce)
|
||||
enic_set_int_moderation(enic, &enic->rq[0]);
|
||||
vnic_intr_unmask(&enic->intr[intr]);
|
||||
@ -1663,13 +1662,12 @@ static int enic_poll_msix_rq(struct napi_struct *napi, int budget)
|
||||
*/
|
||||
enic_calc_int_moderation(enic, &enic->rq[rq]);
|
||||
|
||||
if (work_done < work_to_do) {
|
||||
if ((work_done < budget) && napi_complete_done(napi, work_done)) {
|
||||
|
||||
/* Some work done, but not enough to stay in polling,
|
||||
* exit polling
|
||||
*/
|
||||
|
||||
napi_complete_done(napi, work_done);
|
||||
if (enic->rx_coalesce_setting.use_adaptive_rx_coalesce)
|
||||
enic_set_int_moderation(enic, &enic->rq[rq]);
|
||||
vnic_intr_unmask(&enic->intr[intr]);
|
||||
|
Loading…
Reference in New Issue
Block a user