[DCCP]: Fix for follows48 The follows48 relation identifies the whether 48-bit sequence number x is the direct successor of y. Currently, it does not handle all cases such as follows48(0x(prefix)10000LL, 0x(prefix)0FFFFLL) correctly (where prefix is an arbitrary hex sequence of up to 7 digits). This is fixed by reusing the new dccp_delta_seqno function. Signed-off-by: Gerrit Renker <gerrit@xxxxxxxxxxxxxx> --- net/dccp/dccp.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) --- a/net/dccp/dccp.h +++ b/net/dccp/dccp.h @@ -146,9 +146,7 @@ static inline u64 max48(const u64 seq1, /* is seq1 next seqno after seq2 */ static inline int follows48(const u64 seq1, const u64 seq2) { - int diff = (seq1 & 0xFFFF) - (seq2 & 0xFFFF); - - return diff==1; + return dccp_delta_seqno(seq2, seq1) == 1; } enum { - To unsubscribe from this list: send the line "unsubscribe dccp" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html