Re: [GIT PULL v2] virtio,vhost,vdpa: fixes, cleanups

2023-01-04 Thread pr-tracker-bot
The pull request you sent on Tue, 3 Jan 2023 10:49:46 -0500: > https://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git tags/for_linus has been merged into torvalds/linux.git: https://git.kernel.org/torvalds/c/41c03ba9beea760bd2d2ac9250b09a2e192da2dc Thank you! -- Deet-doot-dot, I am a bo

Re: [PATCH -next] vdpa/mlx5: fix check wrong pointer in mlx5_vdpa_add_mac_vlan_rules()

2023-01-04 Thread Michael S. Tsirkin
On Wed, Jan 04, 2023 at 11:41:31AM +, Eli Cohen wrote: > I see these patches were not sent yet. > Michael/Yang Yinglliang, isn't it better to send a fixed patch instead of > sending the original and fix on top of it? depends on the severity of the fix. in this case it seems to leak uninitiali

Re: [syzbot] kernel BUG in vhost_vsock_handle_tx_kick

2023-01-04 Thread Michael S. Tsirkin
On Mon, Dec 19, 2022 at 10:46:47AM +, Bobby Eshleman wrote: > On Tue, Jan 03, 2023 at 08:21:25PM -0800, Cong Wang wrote: > > On Tue, Jan 03, 2023 at 04:08:51PM -0800, syzbot wrote: > > > Hello, > > > > > > syzbot found the following issue on: > > > > > > HEAD commit:c76083fac3ba Add linux

Re: [PATCH 0/2] net/af_packet: Fix kernel BUG in __skb_gso_segment

2023-01-04 Thread Greg KH
On Thu, Dec 22, 2022 at 10:35:43AM +0200, Tudor Ambarus wrote: > The series is intended for sta...@vger.kernel.org # 5.4+ > > Syzkaller reported the following bug on linux-5.{4, 10, 15}.y: > https://syzkaller.appspot.com/bug?id=ce5575575f074c33ff80d104f5baee26f22e95f5 > > The upstream commit that

[PATCH] virtio: vdpa: fix kernel warning in snet_vdpa_remove_vf

2023-01-04 Thread Alvaro Karsz
Call pci_free_irq_vectors after calling vdpa_unregister_device. Otherwise, we get the following kernel warning: remove_proc_entry: removing non-empty directory 'irq/..', leaking at least '..' This happens only if SNET_CFG_FLAG_IRQ_PF flag is not set. This patch should be applied

[PATCH v2 2/3] PCI: Avoid FLR for SolidRun SNET DPU rev 1

2023-01-04 Thread Alvaro Karsz
This patch fixes a FLR bug on the SNET DPU rev 1 by setting the PCI_DEV_FLAGS_NO_FLR_RESET flag. As there is a quirk to avoid FLR (quirk_no_flr), I added a new quirk to check the rev ID before calling to quirk_no_flr. Without this patch, a SNET DPU rev 1 may hang when FLR is applied. Signed-off-

[PATCH v2 1/3] PCI: Add SolidRun vendor ID

2023-01-04 Thread Alvaro Karsz
Add SolidRun vendor ID to pci_ids.h The vendor ID is used in 2 different source files, the SNET vDPA driver and PCI quirks. Signed-off-by: Alvaro Karsz Acked-by: Bjorn Helgaas -- v2: - Semantics fixes in commit log. - Move the vendor ID to the rigth place, sorted by vendor ID. -