nvme-tcp: don't use sendpage for SLAB pages
authorMikhail Skorzhinskii <mskorzhinskiy@solarflare.com>
Mon, 8 Jul 2019 10:31:29 +0000 (12:31 +0200)
committerChristoph Hellwig <hch@lst.de>
Tue, 9 Jul 2019 21:18:09 +0000 (14:18 -0700)
According to commit a10674bf2406 ("tcp: detecting the misuse of
.sendpage for Slab objects") and previous discussion, tcp_sendpage
should not be used for pages that is managed by SLAB, as SLAB is not
taking page reference counters into consideration.

Signed-off-by: Mikhail Skorzhinskii <mskorzhinskiy@solarflare.com>
Reviewed-by: Sagi Grimberg <sagi@grimberg.me>
Signed-off-by: Christoph Hellwig <hch@lst.de>
drivers/nvme/host/tcp.c

index 08a2501..606b13d 100644 (file)
@@ -860,7 +860,14 @@ static int nvme_tcp_try_send_data(struct nvme_tcp_request *req)
                else
                        flags |= MSG_MORE;
 
-               ret = kernel_sendpage(queue->sock, page, offset, len, flags);
+               /* 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);
+               }
                if (ret <= 0)
                        return ret;