Skip to content

Commit d3f7d56

Browse files
Shawn Landdendavem330
Shawn Landden
authored andcommitted
net: update consumers of MSG_MORE to recognize MSG_SENDPAGE_NOTLAST
Commit 35f9c09 (tcp: tcp_sendpages() should call tcp_push() once) added an internal flag MSG_SENDPAGE_NOTLAST, similar to MSG_MORE. algif_hash, algif_skcipher, and udp used MSG_MORE from tcp_sendpages() and need to see the new flag as identical to MSG_MORE. This fixes sendfile() on AF_ALG. v3: also fix udp Cc: Tom Herbert <[email protected]> Cc: Eric Dumazet <[email protected]> Cc: David S. Miller <[email protected]> Cc: <[email protected]> # 3.4.x + 3.2.x Reported-and-tested-by: Shawn Landden <[email protected]> Original-patch: Richard Weinberger <[email protected]> Signed-off-by: Shawn Landden <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent 85493e6 commit d3f7d56

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

crypto/algif_hash.c

+3
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,9 @@ static ssize_t hash_sendpage(struct socket *sock, struct page *page,
114114
struct hash_ctx *ctx = ask->private;
115115
int err;
116116

117+
if (flags & MSG_SENDPAGE_NOTLAST)
118+
flags |= MSG_MORE;
119+
117120
lock_sock(sk);
118121
sg_init_table(ctx->sgl.sg, 1);
119122
sg_set_page(ctx->sgl.sg, page, size, offset);

crypto/algif_skcipher.c

+3
Original file line numberDiff line numberDiff line change
@@ -378,6 +378,9 @@ static ssize_t skcipher_sendpage(struct socket *sock, struct page *page,
378378
struct skcipher_sg_list *sgl;
379379
int err = -EINVAL;
380380

381+
if (flags & MSG_SENDPAGE_NOTLAST)
382+
flags |= MSG_MORE;
383+
381384
lock_sock(sk);
382385
if (!ctx->more && ctx->used)
383386
goto unlock;

net/ipv4/udp.c

+3
Original file line numberDiff line numberDiff line change
@@ -1098,6 +1098,9 @@ int udp_sendpage(struct sock *sk, struct page *page, int offset,
10981098
struct udp_sock *up = udp_sk(sk);
10991099
int ret;
11001100

1101+
if (flags & MSG_SENDPAGE_NOTLAST)
1102+
flags |= MSG_MORE;
1103+
11011104
if (!up->pending) {
11021105
struct msghdr msg = { .msg_flags = flags|MSG_MORE };
11031106

0 commit comments

Comments
 (0)