All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Michael S. Tsirkin" <mst@redhat.com>
To: Parav Pandit <parav@nvidia.com>
Cc: virtualization@lists.linux-foundation.org, jasowang@redhat.com,
	edumazet@google.com, kbuild-all@lists.01.org, lkp@intel.com,
	linux-kernel@vger.kernel.org, kbuild@lists.01.org,
	elic@nvidia.com, dan.carpenter@oracle.com
Subject: Re: [PATCH v1] vdpa: Consider device id larger than 31
Date: Tue, 30 Nov 2021 18:34:51 -0500	[thread overview]
Message-ID: <20211130183432-mutt-send-email-mst@kernel.org> (raw)
In-Reply-To: <20211130042949.88958-1-parav@nvidia.com>

On Tue, Nov 30, 2021 at 06:29:49AM +0200, Parav Pandit wrote:
> virtio device id value can be more than 31. Hence, use BIT_ULL in
> assignment.
> 
> Fixes: 33b347503f01 ("vdpa: Define vdpa mgmt device, ops and a netlink interface")
> Reported-by: kernel test robot <lkp@intel.com>
> Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
> Signed-off-by: Parav Pandit <parav@nvidia.com>
> Acked-by: Jason Wang <jasowang@redhat.com>
> ---
> changelog:
> v0->v1:
>  - supporting device id up to 63
> ---
>  drivers/vdpa/vdpa.c | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/vdpa/vdpa.c b/drivers/vdpa/vdpa.c
> index 7332a74a4b00..09bbe53c3ac4 100644
> --- a/drivers/vdpa/vdpa.c
> +++ b/drivers/vdpa/vdpa.c
> @@ -404,7 +404,8 @@ static int vdpa_mgmtdev_fill(const struct vdpa_mgmt_dev *mdev, struct sk_buff *m
>  		goto msg_err;
>  
>  	while (mdev->id_table[i].device) {
> -		supported_classes |= BIT(mdev->id_table[i].device);
> +		if (mdev->id_table[i].device <= 63)
> +			supported_classes |= BIT_ULL(mdev->id_table[i].device);
>  		i++;
>  	}


Not for this release, but a for loop will be cleaner here.

> -- 
> 2.26.2


WARNING: multiple messages have this Message-ID (diff)
From: "Michael S. Tsirkin" <mst@redhat.com>
To: Parav Pandit <parav@nvidia.com>
Cc: kbuild-all@lists.01.org, lkp@intel.com,
	linux-kernel@vger.kernel.org,
	virtualization@lists.linux-foundation.org, edumazet@google.com,
	elic@nvidia.com, kbuild@lists.01.org, dan.carpenter@oracle.com
Subject: Re: [PATCH v1] vdpa: Consider device id larger than 31
Date: Tue, 30 Nov 2021 18:34:51 -0500	[thread overview]
Message-ID: <20211130183432-mutt-send-email-mst@kernel.org> (raw)
In-Reply-To: <20211130042949.88958-1-parav@nvidia.com>

On Tue, Nov 30, 2021 at 06:29:49AM +0200, Parav Pandit wrote:
> virtio device id value can be more than 31. Hence, use BIT_ULL in
> assignment.
> 
> Fixes: 33b347503f01 ("vdpa: Define vdpa mgmt device, ops and a netlink interface")
> Reported-by: kernel test robot <lkp@intel.com>
> Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
> Signed-off-by: Parav Pandit <parav@nvidia.com>
> Acked-by: Jason Wang <jasowang@redhat.com>
> ---
> changelog:
> v0->v1:
>  - supporting device id up to 63
> ---
>  drivers/vdpa/vdpa.c | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/vdpa/vdpa.c b/drivers/vdpa/vdpa.c
> index 7332a74a4b00..09bbe53c3ac4 100644
> --- a/drivers/vdpa/vdpa.c
> +++ b/drivers/vdpa/vdpa.c
> @@ -404,7 +404,8 @@ static int vdpa_mgmtdev_fill(const struct vdpa_mgmt_dev *mdev, struct sk_buff *m
>  		goto msg_err;
>  
>  	while (mdev->id_table[i].device) {
> -		supported_classes |= BIT(mdev->id_table[i].device);
> +		if (mdev->id_table[i].device <= 63)
> +			supported_classes |= BIT_ULL(mdev->id_table[i].device);
>  		i++;
>  	}


Not for this release, but a for loop will be cleaner here.

> -- 
> 2.26.2

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

WARNING: multiple messages have this Message-ID (diff)
From: Michael S. Tsirkin <mst@redhat.com>
To: kbuild-all@lists.01.org
Subject: Re: [PATCH v1] vdpa: Consider device id larger than 31
Date: Tue, 30 Nov 2021 18:34:51 -0500	[thread overview]
Message-ID: <20211130183432-mutt-send-email-mst@kernel.org> (raw)
In-Reply-To: <20211130042949.88958-1-parav@nvidia.com>

[-- Attachment #1: Type: text/plain, Size: 1194 bytes --]

On Tue, Nov 30, 2021 at 06:29:49AM +0200, Parav Pandit wrote:
> virtio device id value can be more than 31. Hence, use BIT_ULL in
> assignment.
> 
> Fixes: 33b347503f01 ("vdpa: Define vdpa mgmt device, ops and a netlink interface")
> Reported-by: kernel test robot <lkp@intel.com>
> Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
> Signed-off-by: Parav Pandit <parav@nvidia.com>
> Acked-by: Jason Wang <jasowang@redhat.com>
> ---
> changelog:
> v0->v1:
>  - supporting device id up to 63
> ---
>  drivers/vdpa/vdpa.c | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/vdpa/vdpa.c b/drivers/vdpa/vdpa.c
> index 7332a74a4b00..09bbe53c3ac4 100644
> --- a/drivers/vdpa/vdpa.c
> +++ b/drivers/vdpa/vdpa.c
> @@ -404,7 +404,8 @@ static int vdpa_mgmtdev_fill(const struct vdpa_mgmt_dev *mdev, struct sk_buff *m
>  		goto msg_err;
>  
>  	while (mdev->id_table[i].device) {
> -		supported_classes |= BIT(mdev->id_table[i].device);
> +		if (mdev->id_table[i].device <= 63)
> +			supported_classes |= BIT_ULL(mdev->id_table[i].device);
>  		i++;
>  	}


Not for this release, but a for loop will be cleaner here.

> -- 
> 2.26.2

  reply	other threads:[~2021-11-30 23:35 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-11-30  4:29 [PATCH v1] vdpa: Consider device id larger than 31 Parav Pandit
2021-11-30  4:29 ` Parav Pandit
2021-11-30  4:29 ` Parav Pandit via Virtualization
2021-11-30 23:34 ` Michael S. Tsirkin [this message]
2021-11-30 23:34   ` Michael S. Tsirkin
2021-11-30 23:34   ` Michael S. Tsirkin

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=20211130183432-mutt-send-email-mst@kernel.org \
    --to=mst@redhat.com \
    --cc=dan.carpenter@oracle.com \
    --cc=edumazet@google.com \
    --cc=elic@nvidia.com \
    --cc=jasowang@redhat.com \
    --cc=kbuild-all@lists.01.org \
    --cc=kbuild@lists.01.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=lkp@intel.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.