diff options
author | David Howells <dhowells@redhat.com> | 2019-05-16 13:50:31 +0100 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2019-05-16 15:48:30 +0100 |
commit | bbd172e31696709b58eb492fafb574985b778326 (patch) | |
tree | 5a215213707da75e8cb0059c5af46d7b438974fb /include | |
parent | 51eba99970797229b3ac8527193171adea5222ed (diff) |
rxrpc: Provide kernel interface to set max lifespan on a call
Provide an interface to set max lifespan on a call from inside of the
kernel without having to call kernel_sendmsg().
Signed-off-by: David Howells <dhowells@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/net/af_rxrpc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/net/af_rxrpc.h b/include/net/af_rxrpc.h index 78c856cba4f5..c04602ca4a55 100644 --- a/include/net/af_rxrpc.h +++ b/include/net/af_rxrpc.h @@ -68,5 +68,7 @@ u32 rxrpc_kernel_get_epoch(struct socket *, struct rxrpc_call *); bool rxrpc_kernel_get_reply_time(struct socket *, struct rxrpc_call *, ktime_t *); bool rxrpc_kernel_call_is_complete(struct rxrpc_call *); +void rxrpc_kernel_set_max_life(struct socket *, struct rxrpc_call *, + unsigned long); #endif /* _NET_RXRPC_H */ |