drm: i915: Adapt to -Walloc-size
authorSam James <sam@gentoo.org>
Tue, 7 Nov 2023 21:55:33 +0000 (21:55 +0000)
committerJani Nikula <jani.nikula@intel.com>
Thu, 9 Nov 2023 11:05:17 +0000 (13:05 +0200)
GCC 14 introduces a new -Walloc-size included in -Wextra which errors out
like:
```
drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c: In function ‘eb_copy_relocations’:
drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c:1681:24: error: allocation of insufficient size ‘1’ for type ‘struct drm_i915_gem_relocation_entry’ with size ‘32’ [-Werror=alloc-size]
 1681 |                 relocs = kvmalloc_array(size, 1, GFP_KERNEL);
      |                        ^

```

So, just swap the number of members and size arguments to match the prototype, as
we're initialising 1 element of size `size`. GCC then sees we're not
doing anything wrong.

Signed-off-by: Sam James <sam@gentoo.org>
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20231107215538.1891359-1-sam@gentoo.org
drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c

index 683fd8d3151c365a6d868a8bdae6b125186f5882..45b9d9e34b8b8ef8a99c43ecf74a00932b8b5ce3 100644 (file)
@@ -1678,7 +1678,7 @@ static int eb_copy_relocations(const struct i915_execbuffer *eb)
                urelocs = u64_to_user_ptr(eb->exec[i].relocs_ptr);
                size = nreloc * sizeof(*relocs);
 
-               relocs = kvmalloc_array(size, 1, GFP_KERNEL);
+               relocs = kvmalloc_array(1, size, GFP_KERNEL);
                if (!relocs) {
                        err = -ENOMEM;
                        goto err;