Netdev Archive on lore.kernel.org
help / color / mirror / Atom feed
From: David Miller <davem@davemloft.net>
To: hch@lst.de
Cc: kuba@kernel.org, colyli@suse.de, netdev@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH] net: bypass ->sendpage for slab pages
Date: Fri, 21 Aug 2020 14:14:00 -0700 (PDT) [thread overview]
Message-ID: <20200821.141400.594703865403700191.davem@davemloft.net> (raw)
In-Reply-To: <20200820043744.GA4349@lst.de>
From: Christoph Hellwig <hch@lst.de>
Date: Thu, 20 Aug 2020 06:37:44 +0200
> If you look at who uses sendpage outside the networking layer itself
> you see that it is basically block driver and file systems. These
> have no way to control what memory they get passed and have to deal
> with everything someone throws at them.
I see nvme doing virt_to_page() on several things when it calls into
kernel_sendpage().
This is the kind of stuff I want cleaned up, and which your patch
will not trap nor address.
In nvme it sometimes seems to check for sendpage validity:
/* can't zcopy slab pages */
if (unlikely(PageSlab(page))) {
ret = sock_no_sendpage(queue->sock, page, offset, len,
flags);
} else {
ret = kernel_sendpage(queue->sock, page, offset, len,
flags);
}
Yet elsewhere does not and just blindly calls:
ret = kernel_sendpage(queue->sock, virt_to_page(pdu),
offset_in_page(pdu) + req->offset, len, flags);
This pdu seems to come from a page frag allocation.
That's the target side. On the host side:
ret = kernel_sendpage(cmd->queue->sock, page, cmd->offset,
left, flags);
No page slab check or anything like that.
I'm hesitent to put in the kernel_sendpage() patch, becuase it provides a
disincentive to fix up code like this.
next prev parent reply other threads:[~2020-08-21 21:14 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-08-19 5:19 Christoph Hellwig
2020-08-19 19:07 ` David Miller
2020-08-20 4:37 ` Christoph Hellwig
2020-08-21 21:14 ` David Miller [this message]
2020-09-18 8:37 ` Coly Li
2020-09-21 14:25 ` Christoph Hellwig
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200821.141400.594703865403700191.davem@davemloft.net \
--to=davem@davemloft.net \
--cc=colyli@suse.de \
--cc=hch@lst.de \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--subject='Re: [PATCH] net: bypass ->sendpage for slab pages' \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).