diff options
author | K. Y. Srinivasan <kys@microsoft.com> | 2012-12-01 06:46:53 -0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-01-17 11:39:15 -0800 |
commit | db11f12a11c9f04d504510e1cc20775209b0e509 (patch) | |
tree | 8c19d9cf2f84d8d395a240eda7386d92eed699fd /drivers/hv/hyperv_vmbus.h | |
parent | 01986313289bd2e143d693f803c7675ea121a832 (diff) | |
download | talos-obmc-linux-db11f12a11c9f04d504510e1cc20775209b0e509.tar.gz talos-obmc-linux-db11f12a11c9f04d504510e1cc20775209b0e509.zip |
Drivers: hv: Manage event tasklets on per-cpu basis
Now that we can potentially take vmbus interrupts on any CPU, make the
tasklets per-CPU.
Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Reviewed-by: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/hv/hyperv_vmbus.h')
-rw-r--r-- | drivers/hv/hyperv_vmbus.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/hv/hyperv_vmbus.h b/drivers/hv/hyperv_vmbus.h index 9135a6fcf3bd..becb106918d6 100644 --- a/drivers/hv/hyperv_vmbus.h +++ b/drivers/hv/hyperv_vmbus.h @@ -504,6 +504,12 @@ struct hv_context { * Linux cpuid 'a'. */ u32 vp_index[NR_CPUS]; + /* + * Starting with win8, we can take channel interrupts on any CPU; + * we will manage the tasklet that handles events on a per CPU + * basis. + */ + struct tasklet_struct *event_dpc[NR_CPUS]; }; extern struct hv_context hv_context; |