diff options
author | David Howells <dhowells@redhat.com> | 2020-07-02 14:59:46 +0100 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2020-09-08 21:10:45 +0100 |
commit | b7a7d67408032843c14071711d6259aada9392f0 (patch) | |
tree | 9e7d3c9daf4566dc07cdbeda4ee20ade628b2543 /net/rxrpc/ar-internal.h | |
parent | 4349abdb409b04a5ed4ca4d2c1df7ef0cc16f6bd (diff) | |
download | linux-b7a7d67408032843c14071711d6259aada9392f0.tar.gz linux-b7a7d67408032843c14071711d6259aada9392f0.tar.bz2 linux-b7a7d67408032843c14071711d6259aada9392f0.zip |
rxrpc: Impose a maximum number of client calls
Impose a maximum on the number of client rxrpc calls that are allowed
simultaneously. This will be in lieu of a maximum number of client
connections as this is easier to administed as, unlike connections, calls
aren't reusable (to be changed in a subsequent patch)..
This doesn't affect the limits on service calls and connections.
Signed-off-by: David Howells <dhowells@redhat.com>
Diffstat (limited to 'net/rxrpc/ar-internal.h')
-rw-r--r-- | net/rxrpc/ar-internal.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/rxrpc/ar-internal.h b/net/rxrpc/ar-internal.h index 884cff7bb169..de84198b3285 100644 --- a/net/rxrpc/ar-internal.h +++ b/net/rxrpc/ar-internal.h @@ -493,6 +493,7 @@ enum rxrpc_call_flag { RXRPC_CALL_RX_HEARD, /* The peer responded at least once to this call */ RXRPC_CALL_RX_UNDERRUN, /* Got data underrun */ RXRPC_CALL_DISCONNECTED, /* The call has been disconnected */ + RXRPC_CALL_KERNEL, /* The call was made by the kernel */ }; /* @@ -727,6 +728,7 @@ struct rxrpc_call_params { u32 normal; /* Max time since last call packet (msec) */ } timeouts; u8 nr_timeouts; /* Number of timeouts specified */ + bool kernel; /* T if kernel is making the call */ enum rxrpc_interruptibility interruptibility; /* How is interruptible is the call? */ }; |