Message ID | 20241105072642.898710-10-lulu@redhat.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | vhost: Add support of kthread API | expand |
Context | Check | Description |
---|---|---|
netdev/tree_selection | success | Not a local patch |
diff --git a/drivers/vhost/vhost.c b/drivers/vhost/vhost.c index 70c793b63905..1a4ccf4f7316 100644 --- a/drivers/vhost/vhost.c +++ b/drivers/vhost/vhost.c @@ -43,6 +43,9 @@ module_param(max_iotlb_entries, int, 0444); MODULE_PARM_DESC(max_iotlb_entries, "Maximum number of iotlb entries. (default: 2048)"); static bool inherit_owner_default = true; +module_param(inherit_owner_default, bool, 0444); +MODULE_PARM_DESC(inherit_owner_default, + "Set vhost_task mode as the default(default: Y)"); enum { VHOST_MEMORY_F_LOG = 0x1,
Expose the inherit_owner_default modparam by module_param(). Signed-off-by: Cindy Lu <lulu@redhat.com> --- drivers/vhost/vhost.c | 3 +++ 1 file changed, 3 insertions(+)