Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1375538
| From | "Wan, Vincent" <Vincent.Wan@amd.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | RE: [patch] iommu/amd: Signedness bug in acpihid_device_group() |
| Date | 2016-04-11 09:30 +0200 |
| Message-ID | <rmEsi-225-3@gated-at.bofh.it> (permalink) |
| References | <rmEiD-1Ws-35@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
> From: Dan Carpenter [mailto:dan.carpenter@oracle.com]
> Sent: Monday, April 11, 2016 3:15 PM
> To: Joerg Roedel; Wan, Vincent
> Cc: iommu@lists.linux-foundation.org; linux-kernel@vger.kernel.org; kernel-
> janitors@vger.kernel.org
> Subject: [patch] iommu/amd: Signedness bug in acpihid_device_group()
>
> "devid" needs to be signed for the error handling to work.
>
> Fixes:b097d11a0fa3f ('iommu/amd: Manage iommu_group for ACPI HID
> devices')
> Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
>
> diff --git a/drivers/iommu/amd_iommu.c b/drivers/iommu/amd_iommu.c
> index c430c10..12f7779 100644
> --- a/drivers/iommu/amd_iommu.c
> +++ b/drivers/iommu/amd_iommu.c
> @@ -283,7 +283,7 @@ static struct iommu_dev_data *get_dev_data(struct
> device *dev) static struct iommu_group *acpihid_device_group(struct device
> *dev) {
> struct acpihid_map_entry *p, *entry = NULL;
> - u16 devid;
> + int devid;
Sure, thanks for your patch.
Wan Zongshun.
>
> devid = get_acpihid_device_id(dev, &entry);
> if (devid < 0)
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[patch] iommu/amd: Signedness bug in acpihid_device_group() Dan Carpenter <dan.carpenter@oracle.com> - 2016-04-11 09:20 +0200 RE: [patch] iommu/amd: Signedness bug in acpihid_device_group() "Wan, Vincent" <Vincent.Wan@amd.com> - 2016-04-11 09:30 +0200 Re: [patch] iommu/amd: Signedness bug in acpihid_device_group() Joerg Roedel <joro@8bytes.org> - 2016-04-11 16:20 +0200
csiph-web