Re: linux-next: Tree for Sep 27 [drivers/net/hyperv/hv_netvsc.ko]

2023-09-27 Thread Randy Dunlap
On 9/26/23 20:51, Stephen Rothwell wrote: > Hi all, > > Changes since 20230926: > on i386: ERROR: modpost: "utf8s_to_utf16s" [drivers/net/hyperv/hv_netvsc.ko] undefined! Full randconfig file is attached. -- ~Randy config-r7888.gz Description: application/gzip

Re: [PATCH] x86/hyperv: Remove hv_vtl_early_init initcall

2023-09-27 Thread kernel test robot
Hi Saurabh, kernel test robot noticed the following build warnings: [auto build test WARNING on v6.6-rc2] [also build test WARNING on linus/master next-20230920] [cannot apply to tip/x86/core] [If your patch is applied to the wrong git tree, kindly drop us a note. And when submitting patch, we su

Re: [PATCH v3 15/15] Drivers: hv: Add modules to expose /dev/mshv to VMMs running on Hyper-V

2023-09-27 Thread Nuno Das Neves
On 9/27/2023 1:33 AM, Greg KH wrote: On Wed, Sep 27, 2023 at 08:04:42AM +, Wei Liu wrote: So, the driver is supposed to stash a pointer to struct device in private_data. That's what I alluded to in my previous reply. The core driver framework or the VFS doesn't give us a reference to struct

[PATCH net-next v6] net: hv_netvsc: fix netvsc_send_completion to avoid multiple message length checks

2023-09-27 Thread Sonia Sharma
From: Sonia Sharma The switch statement in netvsc_send_completion() is incorrectly validating the length of incoming network packets by falling through to the next case. Avoid the fallthrough. Instead break after a case match and then process the complete() call. The current code has not caused a

Re: [PATCH v3 15/15] Drivers: hv: Add modules to expose /dev/mshv to VMMs running on Hyper-V

2023-09-27 Thread Greg KH
On Wed, Sep 27, 2023 at 08:04:42AM +, Wei Liu wrote: > On Wed, Sep 27, 2023 at 08:01:01AM +0200, Greg KH wrote: > [...] > > > > > If we're working with real devices like network cards or graphics > > > > > cards > > > > > I would agree -- it is easy to imagine that we have several cards of >

Re: [PATCH v3 15/15] Drivers: hv: Add modules to expose /dev/mshv to VMMs running on Hyper-V

2023-09-27 Thread Wei Liu
Hi Greg It is past midnight here, so I may not be able to articulate my thoughts very well. I want to avoid waiting for another day for another round trip of emails though. We can look at your reply in the morning and reply again. On Wed, Sep 27, 2023 at 08:01:01AM +0200, Greg KH wrote: [...] > >