Commit 516c512b authored by Michal Kubecek's avatar Michal Kubecek Committed by David S. Miller
Browse files

tun: fix misleading comment format



The comment above tun_flow_save_rps_rxhash() starts with "/**" which
makes it look like kerneldoc comment and results in warnings when
building with W=1. Fix the format to make it look like a normal comment.

Signed-off-by: default avatarMichal Kubecek <mkubecek@suse.cz>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 9dd620af
Loading
Loading
Loading
Loading
+1 −2
Original line number Original line Diff line number Diff line
@@ -546,8 +546,7 @@ static void tun_flow_update(struct tun_struct *tun, u32 rxhash,
	rcu_read_unlock();
	rcu_read_unlock();
}
}


/**
/* Save the hash received in the stack receive path and update the
 * Save the hash received in the stack receive path and update the
 * flow_hash table accordingly.
 * flow_hash table accordingly.
 */
 */
static inline void tun_flow_save_rps_rxhash(struct tun_flow_entry *e, u32 hash)
static inline void tun_flow_save_rps_rxhash(struct tun_flow_entry *e, u32 hash)