Răsfoiți Sursa

net: allow better page reuse in splice(sock -> pipe)

splice() from socket to pipe needs linear_to_page() helper to transfert
skb header to part of page.

We can reset the offset in the current sk->sk_sndmsg_page if we are the
last user of the page.

Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Eric Dumazet 13 ani în urmă
părinte
comite
e66e9a3147
1 a modificat fișierele cu 3 adăugiri și 0 ștergeri
  1. 3 0
      net/core/skbuff.c

+ 3 - 0
net/core/skbuff.c

@@ -1565,6 +1565,9 @@ new_page:
 	} else {
 	} else {
 		unsigned int mlen;
 		unsigned int mlen;
 
 
+		/* If we are the only user of the page, we can reset offset */
+		if (page_count(p) == 1)
+			sk->sk_sndmsg_off = 0;
 		off = sk->sk_sndmsg_off;
 		off = sk->sk_sndmsg_off;
 		mlen = PAGE_SIZE - off;
 		mlen = PAGE_SIZE - off;
 		if (mlen < 64 && mlen < *len) {
 		if (mlen < 64 && mlen < *len) {