virtualization.lists.linux-foundation.org archive mirror
 help / color / mirror / Atom feed
From: Si-Wei Liu <si-wei.liu@oracle.com>
To: Parav Pandit <parav@nvidia.com>,
	"mst@redhat.com" <mst@redhat.com>,
	"jasowang@redhat.com" <jasowang@redhat.com>,
	Eli Cohen <elic@nvidia.com>
Cc: "linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"virtualization@lists.linux-foundation.org"
	<virtualization@lists.linux-foundation.org>
Subject: Re: [PATCH v2 3/7] vdpa: validate provisioned device features against specified attribute
Date: Thu, 2 Feb 2023 13:58:41 -0800	[thread overview]
Message-ID: <6b27b653-1d36-0ec8-c3c7-caaf1b896381@oracle.com> (raw)
In-Reply-To: <PH0PR12MB5481759D5CA6EB5C9D63C517DCD69@PH0PR12MB5481.namprd12.prod.outlook.com>



On 2/1/2023 9:05 PM, Parav Pandit wrote:
>
>> From: Si-Wei Liu <si-wei.liu@oracle.com>
>> Sent: Tuesday, January 31, 2023 6:22 PM
>>
>> With device feature provisioning, there's a chance for misconfiguration that the
>> vdpa feature attribute supplied in 'vdpa dev add' command doesn't get
>> selected on the device_features to be provisioned. For instance, when a @mac
>> attribute is specified, the corresponding feature bit _F_MAC in device_features
>> should be set for consistency. If there's conflict on provisioned features against
>> the attribute, it should be treated as an error to fail the ambiguous command.
>> Noted the opposite is not necessarily true, for e.g. it's okay to have _F_MAC set
>> in device_features without providing a corresponding @mac attribute, in which
>> case the vdpa vendor driver could load certain default value for attribute that is
>> not explicitly specified.
>>
>> Generalize this check in vdpa core so that there's no duplicate code in each
>> vendor driver.
>>
>> Signed-off-by: Si-Wei Liu <si-wei.liu@oracle.com>
>> ---
>>   drivers/vdpa/vdpa.c | 18 ++++++++++++++++++
>>   1 file changed, 18 insertions(+)
>>
>> diff --git a/drivers/vdpa/vdpa.c b/drivers/vdpa/vdpa.c index 21c8aa3..1eba978
>> 100644
>> --- a/drivers/vdpa/vdpa.c
>> +++ b/drivers/vdpa/vdpa.c
>> @@ -601,8 +601,26 @@ static int vdpa_nl_cmd_dev_add_set_doit(struct
>> sk_buff *skb, struct genl_info *i
>>   		config.mask |=
>> BIT_ULL(VDPA_ATTR_DEV_NET_CFG_MAX_VQP);
>>   	}
>>   	if (nl_attrs[VDPA_ATTR_DEV_FEATURES]) {
>> +		u64 missing = 0x0ULL;
>> +
>>   		config.device_features =
>>   			nla_get_u64(nl_attrs[VDPA_ATTR_DEV_FEATURES]);
>> +		if (nl_attrs[VDPA_ATTR_DEV_NET_CFG_MACADDR] &&
>> +		    !(config.device_features & BIT_ULL(VIRTIO_NET_F_MAC)))
>> +			missing |= BIT_ULL(VIRTIO_NET_F_MAC);
>> +		if (nl_attrs[VDPA_ATTR_DEV_NET_CFG_MTU] &&
>> +		    !(config.device_features & BIT_ULL(VIRTIO_NET_F_MTU)))
>> +			missing |= BIT_ULL(VIRTIO_NET_F_MTU);
>> +		if (nl_attrs[VDPA_ATTR_DEV_NET_CFG_MAX_VQP] &&
>> +		    config.net.max_vq_pairs > 1 &&
>> +		    !(config.device_features & BIT_ULL(VIRTIO_NET_F_MQ)))
>> +			missing |= BIT_ULL(VIRTIO_NET_F_MQ);
>> +		if (missing) {
>> +			NL_SET_ERR_MSG_FMT_MOD(info->extack,
>> +					       "Missing features 0x%llx for
>> provided attributes",
>> +					       missing);
>> +			return -EINVAL;
>> +		}
>>   		config.mask |= BIT_ULL(VDPA_ATTR_DEV_FEATURES);
>>   	}
>>
>> --
>> 1.8.3.1
> Vdpa this layer can likely derive the feature bits for the supplied config fields so that user doesn't need to keep track of both.
> Only those feature bits which are unrelated to any config, is what user should be setting.
It's not I can't do this, but Jason wanted to have clear semantics 
around migration compatibility for the driver, and for that users have 
to explicitly provide device_features that we may define new driver 
behavior (rather that inheritance which is implicit and not uniformly 
define across drivers) for compatibility using the new uAPI.

Thanks,
-Siwei




_______________________________________________
Virtualization mailing list
Virtualization@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/virtualization

  reply	other threads:[~2023-02-02 21:58 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-01-31 23:22 [PATCH v2 0/7] features provisioning fixes and mlx5_vdpa support Si-Wei Liu
2023-01-31 23:22 ` [PATCH v2 1/7] vdpa: fix improper error message when adding vdpa dev Si-Wei Liu
2023-02-02  4:45   ` Parav Pandit via Virtualization
2023-01-31 23:22 ` [PATCH v2 2/7] vdpa: conditionally read STATUS in config space Si-Wei Liu
2023-02-02  4:58   ` Parav Pandit via Virtualization
2023-01-31 23:22 ` [PATCH v2 3/7] vdpa: validate provisioned device features against specified attribute Si-Wei Liu
2023-02-02  5:05   ` Parav Pandit via Virtualization
2023-02-02 21:58     ` Si-Wei Liu [this message]
2023-02-02 22:01       ` Parav Pandit via Virtualization
2023-01-31 23:22 ` [PATCH v2 4/7] virtio: VIRTIO_DEVICE_F_MASK for all per-device features Si-Wei Liu
2023-02-02 17:29   ` Michael S. Tsirkin
2023-02-02 22:00     ` Si-Wei Liu
2023-01-31 23:22 ` [PATCH v2 5/7] vdpa: validate device feature provisioning against supported class Si-Wei Liu
2023-02-03  8:09   ` Michael S. Tsirkin
2023-02-03 19:32     ` Si-Wei Liu
2023-01-31 23:22 ` [PATCH v2 6/7] vdpa/mlx5: conditionally show MTU and STATUS in config space Si-Wei Liu
     [not found]   ` <bad92641-e10e-cb06-179d-2f4bc11c721d@nvidia.com>
2023-02-02 22:18     ` Si-Wei Liu
2023-02-03  8:14   ` Michael S. Tsirkin
2023-02-03 19:37     ` Si-Wei Liu
2023-01-31 23:22 ` [PATCH v2 7/7] vdpa/mlx5: support device features provisioning Si-Wei Liu

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=6b27b653-1d36-0ec8-c3c7-caaf1b896381@oracle.com \
    --to=si-wei.liu@oracle.com \
    --cc=elic@nvidia.com \
    --cc=jasowang@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mst@redhat.com \
    --cc=parav@nvidia.com \
    --cc=virtualization@lists.linux-foundation.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).