]> git.itanic.dy.fi Git - linux-stable/commitdiff
VMCI: Remove VMCI_HANDLE_ARRAY_HEADER_SIZE and VMCI_HANDLE_ARRAY_MAX_CAPACITY
authorChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Sat, 9 Dec 2023 12:36:15 +0000 (13:36 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 15 Dec 2023 16:27:04 +0000 (17:27 +0100)
Remove VMCI_HANDLE_ARRAY_HEADER_SIZE and VMCI_HANDLE_ARRAY_MAX_CAPACITY
that are unused.

Suggested-by: Kees Cook <keescook@chromium.org>
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Reviewed-by: Kees Cook <keescook@chromium.org>
Link: https://lore.kernel.org/r/00547fe74efe329b266eb8074c41f286758a3c64.1702125347.git.christophe.jaillet@wanadoo.fr
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/misc/vmw_vmci/vmci_handle_array.h

index 96193f85be5bba53db81f9cb2cc1a199ef900765..e386c5732727d04da21dcd9860ab99f26ce9adf0 100644 (file)
@@ -20,14 +20,8 @@ struct vmci_handle_arr {
        struct vmci_handle entries[];
 };
 
-#define VMCI_HANDLE_ARRAY_HEADER_SIZE                          \
-       offsetof(struct vmci_handle_arr, entries)
 /* Select a default capacity that results in a 64 byte sized array */
 #define VMCI_HANDLE_ARRAY_DEFAULT_CAPACITY                     6
-/* Make sure that the max array size can be expressed by a u32 */
-#define VMCI_HANDLE_ARRAY_MAX_CAPACITY                         \
-       ((U32_MAX - VMCI_HANDLE_ARRAY_HEADER_SIZE - 1) /        \
-       sizeof(struct vmci_handle))
 
 struct vmci_handle_arr *vmci_handle_arr_create(u32 capacity, u32 max_capacity);
 void vmci_handle_arr_destroy(struct vmci_handle_arr *array);