search for: yunsheng

Displaying 8 results from an estimated 8 matches for "yunsheng".

2020 Sep 01
0
[PATCH net-next] vhost: fix typo in error message
On 2020/9/1 ??10:39, Yunsheng Lin wrote: > "enable" should be "disable" when the function name is > vhost_disable_notify(), which does the disabling work. > > Signed-off-by: Yunsheng Lin <linyunsheng at huawei.com> > --- > drivers/vhost/vhost.c | 2 +- > 1 file changed, 1 insert...
2020 Sep 01
0
[PATCH net-next] vhost: fix typo in error message
On Tue, Sep 01, 2020 at 10:39:09AM +0800, Yunsheng Lin wrote: > "enable" should be "disable" when the function name is > vhost_disable_notify(), which does the disabling work. > > Signed-off-by: Yunsheng Lin <linyunsheng at huawei.com> Acked-by: Michael S. Tsirkin <mst at redhat.com> Why net-next thoug...
2020 Sep 01
0
[PATCH net-next] vhost: fix typo in error message
From: Yunsheng Lin <linyunsheng at huawei.com> Date: Tue, 1 Sep 2020 10:39:09 +0800 > "enable" should be "disable" when the function name is > vhost_disable_notify(), which does the disabling work. > > Signed-off-by: Yunsheng Lin <linyunsheng at huawei.com> Applied t...
2023 Mar 23
0
[PATCH net-next 1/8] virtio_net: mergeable xdp: put old page immediately
On Thu, 23 Mar 2023 11:38:34 +0800, Yunsheng Lin <linyunsheng at huawei.com> wrote: > On 2023/3/23 9:36, Xuan Zhuo wrote: > > On Wed, 22 Mar 2023 16:22:18 +0800, Yunsheng Lin <linyunsheng at huawei.com> wrote: > >> On 2023/3/22 11:03, Xuan Zhuo wrote: > >>> In the xdp implementation of virtio-net merg...
2023 Mar 08
0
[PATCH net, stable v1 3/3] virtio_net: add checking sq is full inside xdp xmit
On Wed, Mar 08, 2023 at 04:13:12PM +0800, Yunsheng Lin wrote: > On 2023/3/8 15:14, Xuan Zhuo wrote: > > On Wed, 8 Mar 2023 14:59:36 +0800, Yunsheng Lin <linyunsheng at huawei.com> wrote: > >> On 2023/3/8 10:49, Xuan Zhuo wrote: > >>> If the queue of xdp xmit is not an independent queue, then when the xdp > &gt...
2023 Mar 23
1
[PATCH net-next 1/8] virtio_net: mergeable xdp: put old page immediately
On Wed, 22 Mar 2023 16:22:18 +0800, Yunsheng Lin <linyunsheng at huawei.com> wrote: > On 2023/3/22 11:03, Xuan Zhuo wrote: > > In the xdp implementation of virtio-net mergeable, it always checks > > whether two page is used and a page is selected to release. This is > > complicated for the processing of action, and...
2019 Sep 06
1
[PULL] vhost, virtio: last minute fixes
...for efficiency Michael S. Tsirkin (1): Revert "vhost: access vq metadata through kernel virtual address" Nadav Amit (1): mm/balloon_compaction: suppress allocation warnings Tiwei Bie (2): vhost/test: fix build for vhost test vhost/test: fix build for vhost test Yunsheng Lin (1): vhost: Remove unnecessary variable drivers/net/virtio_net.c | 2 +- drivers/vhost/test.c | 13 +- drivers/vhost/vhost.c | 520 +---------------------------------------------- drivers/vhost/vhost.h | 41 ---- mm/balloon_compaction.c | 3 +- 5 files changed, 17 inser...
2023 Mar 23
0
[PATCH net-next 2/8] virtio_net: mergeable xdp: introduce mergeable_xdp_prepare
On Thu, 23 Mar 2023 15:24:38 +0800, Yunsheng Lin <linyunsheng at huawei.com> wrote: > On 2023/3/23 13:40, Jason Wang wrote: > >>> > >>>> > >>>> Also, it seems better to split the xdp_linearize_page() to two functions > >>>> as pskb_expand_head() and __skb_linearize() do, one to...