Hi Iouri, On Wed, Jan 12, 2022 at 03:39:13PM -0800, Iouri Tarassov wrote: > > On 1/12/2022 2:12 PM, Nathan Chancellor wrote: > > Hi Iouri, > > > > > We're looking forward additional feedback. > > > > I have been including this patch set into my downstream WSL2 kernel that > > I build with clang and I noticed an instance of -Wenum-conversion that > > is still present in this revision:Please consider cleaning this up in a future revision so that clang > > builds stay clean :) > > ... > > I happened to notice there was another function that looks very similar > > to command_vgpu_to_host_init0(), command_vm_to_host_init0(), which is > > also unused. This was hidden because it is marked as "static inline" in > > a .c file, which should generally be avoided; I would recommend > > replacing all instances of "static inline" with just "static". The > > compiler will still inline it if it feels it is worthwhile. Doing this > > reveals one other unused function, is_empty(): > > > > $ sed -i 's/static inline /static /g' drivers/hv/dxgkrnl/*.c > > > > $ make -skj"$(nproc)" LLVM=1 drivers/hv/dxgkrnl/ > > drivers/hv/dxgkrnl/hmgr.c:167:13: warning: unused function 'is_empty' [-Wunused-function] > > static bool is_empty(struct hmgrtable *table) > > ^ > > 1 warning generated. > > drivers/hv/dxgkrnl/dxgvmbus.c:234:13: warning: unused function 'command_vm_to_host_init0' [-Wunused-function] > > static void command_vm_to_host_init0(struct dxgkvmb_command_vm_to_host > > ^ > > 1 warning generated. > > Thanks a lot! We will get this fixed In addition to the warnings that I mentioned above, when I apply this patchset on top of next-20220125, which enables -Warray-bounds, I see the following warnings with GCC 11.2.1: drivers/hv/dxgkrnl/ioctl.c: In function ‘init_ioctls’: drivers/hv/dxgkrnl/ioctl.c:5315:15: warning: array subscript 69 is above array bounds of ‘struct ioctl_desc[69]’ [-Warray-bounds] 5315 | ioctls[_IOC_NR(v)].ioctl_callback = callback; \ | ~~~~~~^~~~~~~~~~~~ drivers/hv/dxgkrnl/ioctl.c:5456:9: note: in expansion of macro ‘SET_IOCTL’ 5456 | SET_IOCTL(/*0x45 */ dxgk_create_sync_file, | ^~~~~~~~~ drivers/hv/dxgkrnl/ioctl.c:34:26: note: while referencing ‘ioctls’ 34 | static struct ioctl_desc ioctls[LX_IO_MAX + 1]; | ^~~~~~ drivers/hv/dxgkrnl/ioctl.c:5316:15: warning: array subscript 69 is above array bounds of ‘struct ioctl_desc[69]’ [-Warray-bounds] 5316 | ioctls[_IOC_NR(v)].ioctl = v | ~~~~~~^~~~~~~~~~~~ drivers/hv/dxgkrnl/ioctl.c:5456:9: note: in expansion of macro ‘SET_IOCTL’ 5456 | SET_IOCTL(/*0x45 */ dxgk_create_sync_file, | ^~~~~~~~~ drivers/hv/dxgkrnl/ioctl.c:34:26: note: while referencing ‘ioctls’ 34 | static struct ioctl_desc ioctls[LX_IO_MAX + 1]; | ^~~~~~ drivers/hv/dxgkrnl/dxgvmbus.c: In function ‘dxgvmb_send_query_alloc_residency’: drivers/hv/dxgkrnl/dxgvmbus.c:147:16: warning: array subscript ‘struct dxgvmbusmsg[0]’ is partly outside array bounds of ‘struct dxgvmbusmsgres[1]’ [-Warray-bounds] 147 | if (msg->hdr && (char *)msg->hdr != msg->msg_on_stack) | ~~~^~~~~ drivers/hv/dxgkrnl/dxgvmbus.c:1882:31: note: while referencing ‘msg’ 1882 | struct dxgvmbusmsgres msg = {.hdr = NULL}; | ^~~ drivers/hv/dxgkrnl/dxgvmbus.c: In function ‘dxgvmb_send_open_resource’: drivers/hv/dxgkrnl/dxgvmbus.c:147:16: warning: array subscript ‘struct dxgvmbusmsg[0]’ is partly outside array bounds of ‘struct dxgvmbusmsgres[1]’ [-Warray-bounds] 147 | if (msg->hdr && (char *)msg->hdr != msg->msg_on_stack) | ~~~^~~~~ drivers/hv/dxgkrnl/dxgvmbus.c:2132:31: note: while referencing ‘msg’ 2132 | struct dxgvmbusmsgres msg = {.hdr = NULL}; | ^~~ drivers/hv/dxgkrnl/dxgvmbus.c: In function ‘dxgvmb_send_get_stdalloc_data’: drivers/hv/dxgkrnl/dxgvmbus.c:147:16: warning: array subscript ‘struct dxgvmbusmsg[0]’ is partly outside array bounds of ‘struct dxgvmbusmsgres[1]’ [-Warray-bounds] 147 | if (msg->hdr && (char *)msg->hdr != msg->msg_on_stack) | ~~~^~~~~ drivers/hv/dxgkrnl/dxgvmbus.c:2183:31: note: while referencing ‘msg’ 2183 | struct dxgvmbusmsgres msg = {.hdr = NULL}; | ^~~ drivers/hv/dxgkrnl/dxgvmbus.c: In function ‘dxgvmb_send_get_allocation_priority’: drivers/hv/dxgkrnl/dxgvmbus.c:147:16: warning: array subscript ‘struct dxgvmbusmsg[0]’ is partly outside array bounds of ‘struct dxgvmbusmsgres[1]’ [-Warray-bounds] 147 | if (msg->hdr && (char *)msg->hdr != msg->msg_on_stack) | ~~~^~~~~ drivers/hv/dxgkrnl/dxgvmbus.c:3106:31: note: while referencing ‘msg’ 3106 | struct dxgvmbusmsgres msg = {.hdr = NULL}; | ^~~ drivers/hv/dxgkrnl/dxgvmbus.c: In function ‘dxgvmb_send_reclaim_allocations’: drivers/hv/dxgkrnl/dxgvmbus.c:147:16: warning: array subscript ‘struct dxgvmbusmsg[0]’ is partly outside array bounds of ‘struct dxgvmbusmsgres[1]’ [-Warray-bounds] 147 | if (msg->hdr && (char *)msg->hdr != msg->msg_on_stack) | ~~~^~~~~ drivers/hv/dxgkrnl/dxgvmbus.c:3298:31: note: while referencing ‘msg’ 3298 | struct dxgvmbusmsgres msg = {.hdr = NULL}; | ^~~ drivers/hv/dxgkrnl/dxgvmbus.c: In function ‘dxgvmb_send_query_statistics’: drivers/hv/dxgkrnl/dxgvmbus.c:147:16: warning: array subscript ‘struct dxgvmbusmsg[0]’ is partly outside array bounds of ‘struct dxgvmbusmsgres[1]’ [-Warray-bounds] 147 | if (msg->hdr && (char *)msg->hdr != msg->msg_on_stack) | ~~~^~~~~ drivers/hv/dxgkrnl/dxgvmbus.c:3698:31: note: while referencing ‘msg’ 3698 | struct dxgvmbusmsgres msg = {.hdr = NULL}; | ^~~ The warning in ioctl.c is resolved with the following diff, which appears to be a forward port problem, since the WSL2 tree is fine. I don't see the warning in dxgvmbus.c with clang so I did not look into it. Cheers, Nathan diff --git a/include/uapi/misc/d3dkmthk.h b/include/uapi/misc/d3dkmthk.h index a7c9fdd95e2e..a32431e3df56 100644 --- a/include/uapi/misc/d3dkmthk.h +++ b/include/uapi/misc/d3dkmthk.h @@ -1949,6 +1949,6 @@ struct d3dkmt_createsyncfile { #define LX_DXCREATESYNCFILE \ _IOWR(0x47, 0x45, struct d3dkmt_createsyncfile) -#define LX_IO_MAX 0x44 +#define LX_IO_MAX 0x45 #endif /* _D3DKMTHK_H */