diff options
Diffstat (limited to 'net/tipc/link.c')
| -rw-r--r-- | net/tipc/link.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/net/tipc/link.c b/net/tipc/link.c index 5ed4b4f7452d..f89570c54f54 100644 --- a/net/tipc/link.c +++ b/net/tipc/link.c @@ -1572,7 +1572,7 @@ static struct sk_buff *link_insert_deferred_queue(struct link *l_ptr,  static int link_recv_buf_validate(struct sk_buff *buf)  {  	static u32 min_data_hdr_size[8] = { -		SHORT_H_SIZE, MCAST_H_SIZE, LONG_H_SIZE, DIR_MSG_H_SIZE, +		SHORT_H_SIZE, MCAST_H_SIZE, NAMED_H_SIZE, BASIC_H_SIZE,  		MAX_H_SIZE, MAX_H_SIZE, MAX_H_SIZE, MAX_H_SIZE  		}; @@ -2553,7 +2553,7 @@ int tipc_link_recv_fragment(struct sk_buff **pending, struct sk_buff **fb,  		u32 msg_sz = msg_size(imsg);  		u32 fragm_sz = msg_data_sz(fragm);  		u32 exp_fragm_cnt = msg_sz/fragm_sz + !!(msg_sz % fragm_sz); -		u32 max =  TIPC_MAX_USER_MSG_SIZE + LONG_H_SIZE; +		u32 max =  TIPC_MAX_USER_MSG_SIZE + NAMED_H_SIZE;  		if (msg_type(imsg) == TIPC_MCAST_MSG)  			max = TIPC_MAX_USER_MSG_SIZE + MCAST_H_SIZE;  		if (msg_size(imsg) > max) { @@ -2882,7 +2882,7 @@ static int tipc_link_stats(const char *name, char *buf, const u32 buf_size)  		profile_total = 1;  	tipc_printf(&pb, "  TX profile sample:%u packets  average:%u octets\n"  			 "  0-64:%u%% -256:%u%% -1024:%u%% -4096:%u%% " -			 "-16354:%u%% -32768:%u%% -66000:%u%%\n", +			 "-16384:%u%% -32768:%u%% -66000:%u%%\n",  		    l_ptr->stats.msg_length_counts,  		    l_ptr->stats.msg_lengths_total / profile_total,  		    percent(l_ptr->stats.msg_length_profile[0], profile_total),  |