mirror of
https://gitee.com/bianbu-linux/linux-6.6-fh
synced 2025-04-25 12:47:10 -04:00
smc: Drop smc_sendpage() in favour of smc_sendmsg() + MSG_SPLICE_PAGES
Drop the smc_sendpage() code as smc_sendmsg() just passes the call down to the underlying TCP socket and smc_tx_sendpage() is just a wrapper around its sendmsg implementation. Signed-off-by: David Howells <dhowells@redhat.com> cc: Karsten Graul <kgraul@linux.ibm.com> cc: Wenjia Zhang <wenjia@linux.ibm.com> cc: Jan Karcher <jaka@linux.ibm.com> cc: "D. Wythe" <alibuda@linux.alibaba.com> cc: Tony Lu <tonylu@linux.alibaba.com> cc: Wen Gu <guwen@linux.alibaba.com> cc: Jens Axboe <axboe@kernel.dk> cc: Matthew Wilcox <willy@infradead.org> Link: https://lore.kernel.org/r/20230623225513.2732256-10-dhowells@redhat.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
c336a79983
commit
2f8bc2bbb0
5 changed files with 1 additions and 52 deletions
|
@ -3133,34 +3133,6 @@ static int smc_ioctl(struct socket *sock, unsigned int cmd,
|
||||||
return put_user(answ, (int __user *)arg);
|
return put_user(answ, (int __user *)arg);
|
||||||
}
|
}
|
||||||
|
|
||||||
static ssize_t smc_sendpage(struct socket *sock, struct page *page,
|
|
||||||
int offset, size_t size, int flags)
|
|
||||||
{
|
|
||||||
struct sock *sk = sock->sk;
|
|
||||||
struct smc_sock *smc;
|
|
||||||
int rc = -EPIPE;
|
|
||||||
|
|
||||||
smc = smc_sk(sk);
|
|
||||||
lock_sock(sk);
|
|
||||||
if (sk->sk_state != SMC_ACTIVE) {
|
|
||||||
release_sock(sk);
|
|
||||||
goto out;
|
|
||||||
}
|
|
||||||
release_sock(sk);
|
|
||||||
if (smc->use_fallback) {
|
|
||||||
rc = kernel_sendpage(smc->clcsock, page, offset,
|
|
||||||
size, flags);
|
|
||||||
} else {
|
|
||||||
lock_sock(sk);
|
|
||||||
rc = smc_tx_sendpage(smc, page, offset, size, flags);
|
|
||||||
release_sock(sk);
|
|
||||||
SMC_STAT_INC(smc, sendpage_cnt);
|
|
||||||
}
|
|
||||||
|
|
||||||
out:
|
|
||||||
return rc;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Map the affected portions of the rmbe into an spd, note the number of bytes
|
/* Map the affected portions of the rmbe into an spd, note the number of bytes
|
||||||
* to splice in conn->splice_pending, and press 'go'. Delays consumer cursor
|
* to splice in conn->splice_pending, and press 'go'. Delays consumer cursor
|
||||||
* updates till whenever a respective page has been fully processed.
|
* updates till whenever a respective page has been fully processed.
|
||||||
|
@ -3232,7 +3204,6 @@ static const struct proto_ops smc_sock_ops = {
|
||||||
.sendmsg = smc_sendmsg,
|
.sendmsg = smc_sendmsg,
|
||||||
.recvmsg = smc_recvmsg,
|
.recvmsg = smc_recvmsg,
|
||||||
.mmap = sock_no_mmap,
|
.mmap = sock_no_mmap,
|
||||||
.sendpage = smc_sendpage,
|
|
||||||
.splice_read = smc_splice_read,
|
.splice_read = smc_splice_read,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -227,7 +227,7 @@ static int smc_nl_fill_stats_tech_data(struct sk_buff *skb,
|
||||||
SMC_NLA_STATS_PAD))
|
SMC_NLA_STATS_PAD))
|
||||||
goto errattr;
|
goto errattr;
|
||||||
if (nla_put_u64_64bit(skb, SMC_NLA_STATS_T_SENDPAGE_CNT,
|
if (nla_put_u64_64bit(skb, SMC_NLA_STATS_T_SENDPAGE_CNT,
|
||||||
smc_tech->sendpage_cnt,
|
0,
|
||||||
SMC_NLA_STATS_PAD))
|
SMC_NLA_STATS_PAD))
|
||||||
goto errattr;
|
goto errattr;
|
||||||
if (nla_put_u64_64bit(skb, SMC_NLA_STATS_T_CORK_CNT,
|
if (nla_put_u64_64bit(skb, SMC_NLA_STATS_T_CORK_CNT,
|
||||||
|
|
|
@ -71,7 +71,6 @@ struct smc_stats_tech {
|
||||||
u64 clnt_v2_succ_cnt;
|
u64 clnt_v2_succ_cnt;
|
||||||
u64 srv_v1_succ_cnt;
|
u64 srv_v1_succ_cnt;
|
||||||
u64 srv_v2_succ_cnt;
|
u64 srv_v2_succ_cnt;
|
||||||
u64 sendpage_cnt;
|
|
||||||
u64 urg_data_cnt;
|
u64 urg_data_cnt;
|
||||||
u64 splice_cnt;
|
u64 splice_cnt;
|
||||||
u64 cork_cnt;
|
u64 cork_cnt;
|
||||||
|
|
|
@ -297,25 +297,6 @@ out_err:
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
int smc_tx_sendpage(struct smc_sock *smc, struct page *page, int offset,
|
|
||||||
size_t size, int flags)
|
|
||||||
{
|
|
||||||
struct msghdr msg = {.msg_flags = flags};
|
|
||||||
char *kaddr = kmap(page);
|
|
||||||
struct kvec iov;
|
|
||||||
int rc;
|
|
||||||
|
|
||||||
if (flags & MSG_SENDPAGE_NOTLAST)
|
|
||||||
msg.msg_flags |= MSG_MORE;
|
|
||||||
|
|
||||||
iov.iov_base = kaddr + offset;
|
|
||||||
iov.iov_len = size;
|
|
||||||
iov_iter_kvec(&msg.msg_iter, ITER_SOURCE, &iov, 1, size);
|
|
||||||
rc = smc_tx_sendmsg(smc, &msg, size);
|
|
||||||
kunmap(page);
|
|
||||||
return rc;
|
|
||||||
}
|
|
||||||
|
|
||||||
/***************************** sndbuf consumer *******************************/
|
/***************************** sndbuf consumer *******************************/
|
||||||
|
|
||||||
/* sndbuf consumer: actual data transfer of one target chunk with ISM write */
|
/* sndbuf consumer: actual data transfer of one target chunk with ISM write */
|
||||||
|
|
|
@ -31,8 +31,6 @@ void smc_tx_pending(struct smc_connection *conn);
|
||||||
void smc_tx_work(struct work_struct *work);
|
void smc_tx_work(struct work_struct *work);
|
||||||
void smc_tx_init(struct smc_sock *smc);
|
void smc_tx_init(struct smc_sock *smc);
|
||||||
int smc_tx_sendmsg(struct smc_sock *smc, struct msghdr *msg, size_t len);
|
int smc_tx_sendmsg(struct smc_sock *smc, struct msghdr *msg, size_t len);
|
||||||
int smc_tx_sendpage(struct smc_sock *smc, struct page *page, int offset,
|
|
||||||
size_t size, int flags);
|
|
||||||
int smc_tx_sndbuf_nonempty(struct smc_connection *conn);
|
int smc_tx_sndbuf_nonempty(struct smc_connection *conn);
|
||||||
void smc_tx_sndbuf_nonfull(struct smc_sock *smc);
|
void smc_tx_sndbuf_nonfull(struct smc_sock *smc);
|
||||||
void smc_tx_consumer_update(struct smc_connection *conn, bool force);
|
void smc_tx_consumer_update(struct smc_connection *conn, bool force);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue