dccp: remove unused inline function dccp_set_seqno
There's no callers in-tree since commit 792b48780e
("dccp: Implement
both feature-local and feature-remote Sequence Window feature")
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
163749ad84
commit
df346f1aac
1 changed files with 0 additions and 5 deletions
|
@ -108,11 +108,6 @@ extern int sysctl_dccp_sync_ratelimit;
|
||||||
#define ADD48(a, b) (((a) + (b)) & UINT48_MAX)
|
#define ADD48(a, b) (((a) + (b)) & UINT48_MAX)
|
||||||
#define SUB48(a, b) ADD48((a), COMPLEMENT48(b))
|
#define SUB48(a, b) ADD48((a), COMPLEMENT48(b))
|
||||||
|
|
||||||
static inline void dccp_set_seqno(u64 *seqno, u64 value)
|
|
||||||
{
|
|
||||||
*seqno = value & UINT48_MAX;
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline void dccp_inc_seqno(u64 *seqno)
|
static inline void dccp_inc_seqno(u64 *seqno)
|
||||||
{
|
{
|
||||||
*seqno = ADD48(*seqno, 1);
|
*seqno = ADD48(*seqno, 1);
|
||||||
|
|
Loading…
Reference in a new issue