Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1628355
| From | Andy Shevchenko <andriy.shevchenko@linux.intel.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH v1 4/8] vfio-mdev: Use recently introduced uuid_le_cmp_p{p}() |
| Date | 2017-04-21 17:30 +0200 |
| Message-ID | <tyIFs-7rg-3@gated-at.bofh.it> (permalink) |
| References | <tyIcp-72y-3@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Recently introduced helpers take pointers to uuid_{be|le} instead of
reference.
Using them makes code less ugly.
Cc: Kirti Wankhede <kwankhede@nvidia.com>
Cc: Alex Williamson <alex.williamson@redhat.com>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
drivers/vfio/mdev/mdev_core.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/vfio/mdev/mdev_core.c b/drivers/vfio/mdev/mdev_core.c
index 126991046eb7..82de886855d8 100644
--- a/drivers/vfio/mdev/mdev_core.c
+++ b/drivers/vfio/mdev/mdev_core.c
@@ -75,7 +75,7 @@ static int _find_mdev_device(struct device *dev, void *data)
mdev = to_mdev_device(dev);
- if (uuid_le_cmp(mdev->uuid, *(uuid_le *)data) == 0)
+ if (uuid_le_cmp_p(data, mdev->uuid) == 0)
return 1;
return 0;
--
2.11.0
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH v1 4/8] vfio-mdev: Use recently introduced uuid_le_cmp_p{p}() Andy Shevchenko <andriy.shevchenko@linux.intel.com> - 2017-04-21 17:30 +0200
csiph-web