diff options
| author | 2025-01-17 15:33:07 -0500 | |
|---|---|---|
| committer | 2025-02-13 23:43:57 +0000 | |
| commit | 5e4304ff8cd9330690de73df7d047014dce191bd (patch) | |
| tree | 6638cc6ff74b93e39a0a8deac7e7c1bcb5f24308 /include/linux/hyperv.h | |
| parent | cpu: export lockdep_assert_cpus_held() (diff) | |
| download | wireguard-linux-5e4304ff8cd9330690de73df7d047014dce191bd.tar.xz wireguard-linux-5e4304ff8cd9330690de73df7d047014dce191bd.zip | |
drivers/hv: introduce vmbus_channel_set_cpu()
The core functionality in target_cpu_store() is also needed in a
subsequent patch for automatically changing the CPU when taking
a CPU offline. As such, factor out the body of target_cpu_store()
into new function vmbus_channel_set_cpu() that can also be used
elsewhere.
No functional change is intended.
Cc: Boqun Feng <boqun.feng@gmail.com>
Cc: Michael Kelley <mhklinux@outlook.com>
Cc: Wei Liu <wei.liu@kernel.org>
Signed-off-by: Hamza Mahfooz <hamzamahfooz@linux.microsoft.com>
Reviewed-by: Michael Kelley <mhklinux@outlook.com>
Tested-by: Michael Kelley <mhklinux@outlook.com>
Link: https://lore.kernel.org/r/20250117203309.192072-2-hamzamahfooz@linux.microsoft.com
Signed-off-by: Wei Liu <wei.liu@kernel.org>
Message-ID: <20250117203309.192072-2-hamzamahfooz@linux.microsoft.com>
Diffstat (limited to 'include/linux/hyperv.h')
| -rw-r--r-- | include/linux/hyperv.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/hyperv.h b/include/linux/hyperv.h index 4179add2864b..7f4f8d8bdf43 100644 --- a/include/linux/hyperv.h +++ b/include/linux/hyperv.h @@ -1661,6 +1661,7 @@ int vmbus_send_tl_connect_request(const guid_t *shv_guest_servie_id, const guid_t *shv_host_servie_id); int vmbus_send_modifychannel(struct vmbus_channel *channel, u32 target_vp); void vmbus_set_event(struct vmbus_channel *channel); +int vmbus_channel_set_cpu(struct vmbus_channel *channel, u32 target_cpu); /* Get the start of the ring buffer. */ static inline void * |
