panvk: drop path from panvk_physical_device struct
authorDavid Heidelberg <david.heidelberg@collabora.com>
Fri, 5 May 2023 20:32:47 +0000 (22:32 +0200)
committerMarge Bot <emma+marge@anholt.net>
Mon, 15 May 2023 09:15:59 +0000 (09:15 +0000)
Unnecessary. Only produces warning:
```
../src/panfrost/vulkan/panvk_device.c:437:4: warning: 'strncpy' specified bound 20 equals destination size [-Wstringop-truncation]
  437 |    strncpy(device->path, path, ARRAY_SIZE(device->path));
      |    ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
```

Signed-off-by: David Heidelberg <david.heidelberg@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/22880>

src/panfrost/vulkan/panvk_device.c
src/panfrost/vulkan/panvk_private.h

index 9df451e..1ee18ee 100644 (file)
@@ -433,8 +433,6 @@ panvk_physical_device_init(struct panvk_physical_device *device,
    }
 
    device->instance = instance;
-   assert(strlen(path) < ARRAY_SIZE(device->path));
-   strncpy(device->path, path, ARRAY_SIZE(device->path));
 
    if (instance->vk.enabled_extensions.KHR_display) {
       master_fd = open(drm_device->nodes[DRM_NODE_PRIMARY], O_RDWR | O_CLOEXEC);
index 4511a78..0dbe68d 100644 (file)
@@ -177,7 +177,6 @@ struct panvk_physical_device {
 
    struct panvk_instance *instance;
 
-   char path[20];
    char name[VK_MAX_PHYSICAL_DEVICE_NAME_SIZE];
    uint8_t driver_uuid[VK_UUID_SIZE];
    uint8_t device_uuid[VK_UUID_SIZE];