Re: [PATCH net,v2] net: mana: Fix Rx DMA datasize and skb_over_panic

2024-04-03 Thread patchwork-bot+netdevbpf
Hello: This patch was applied to netdev/net.git (main) by Jakub Kicinski : On Tue, 2 Apr 2024 12:48:36 -0700 you wrote: > mana_get_rxbuf_cfg() aligns the RX buffer's DMA datasize to be > multiple of 64. So a packet slightly bigger than mtu+14, say 1536, > can be received and cause skb_over_panic

RE: [PATCH v3 5/7] tools: hv: Add new fcopy application based on uio driver

2024-04-03 Thread Long Li
> Subject: [PATCH v3 5/7] tools: hv: Add new fcopy application based on uio > driver > > New fcopy application using uio_hv_generic driver. This application copies > file > from Hyper-V host to guest VM. > > A big part of this code is copied from tools/hv/hv_fcopy_daemon.c which this > new > a

[PATCH v2 1/2] hyperv: Convert from tasklet to BH workqueue

2024-04-03 Thread Allen Pais
The only generic interface to execute asynchronously in the BH context is tasklet; however, it's marked deprecated and has some design flaws. To replace tasklets, BH workqueue support was recently added. A BH workqueue behaves similarly to regular workqueues except that the queued work items are ex

[PATCH v2 2/2] PCI: hv: Convert from tasklet to BH workqueue

2024-04-03 Thread Allen Pais
The only generic interface to execute asynchronously in the BH context is tasklet; however, it's marked deprecated and has some design flaws. To replace tasklets, BH workqueue support was recently added. A BH workqueue behaves similarly to regular workqueues except that the queued work items are ex

Re: [PATCH 1/9] hyperv: Convert from tasklet to BH workqueue

2024-04-03 Thread Allen
> The only generic interface to execute asynchronously in the BH context is > tasklet; however, it's marked deprecated and has some design flaws. To > replace tasklets, BH workqueue support was recently added. A BH workqueue > behaves similarly to regular workqueues except that the queued work item

Re: [PATCH 7/9] s390: Convert from tasklet to BH workqueue

2024-04-03 Thread Allen
> > > > Signed-off-by: Allen Pais > > --- > > drivers/s390/block/dasd.c | 42 > > drivers/s390/block/dasd_int.h | 10 +++--- > > drivers/s390/char/con3270.c| 27 > > drivers/s390/crypto/ap_bus.c | 24 +++