]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commit
i40e: lock service task correctly
authorMitch Williams <mitch.a.williams@intel.com>
Mon, 21 Nov 2016 21:03:51 +0000 (13:03 -0800)
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>
Wed, 7 Dec 2016 05:10:53 +0000 (21:10 -0800)
commit910890338399258af210685210760bc0cc82a5dd
tree7f2557e13d4556c74f65df502fb1b01b3555e4e2
parentf62ba91458b508c957f3e0f98f5c2a72633badcb
i40e: lock service task correctly

The service task lock was being set in the scheduling function, not the
actual service task. This would potentially leave the bit set for a long
time before the task actually ran. Furthermore, if the service task
takes too long, it calls the schedule function to reschedule itself -
which would fail to take the lock and do nothing.

Instead, set and clear the lock bit in the service task itself. In the
process, get rid of the i40e_service_event_complete() function, which is
really just two lines of code that can be put right in the service task
itself.

Change-ID: I83155e682b686121e2897f4429eb7d3f7c669168
Signed-off-by: Mitch Williams <mitch.a.williams@intel.com>
Tested-by: Andrew Bowers <andrewx.bowers@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
drivers/net/ethernet/intel/i40e/i40e_main.c