mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
tipc: fix test of bearer_priority range in tipc_register_media()
For the bearer_priority to be less than TIPC_MIN_LINK_PRI and greater than TIPC_MAX_LINK_PRI is logically impossible. Signed-off-by: Roel Kluin <roel.kluin@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
ea00b8e222
commit
b3df9a514f
@ -119,7 +119,7 @@ int tipc_register_media(u32 media_type,
|
||||
warn("Media <%s> rejected, no broadcast address\n", name);
|
||||
goto exit;
|
||||
}
|
||||
if ((bearer_priority < TIPC_MIN_LINK_PRI) &&
|
||||
if ((bearer_priority < TIPC_MIN_LINK_PRI) ||
|
||||
(bearer_priority > TIPC_MAX_LINK_PRI)) {
|
||||
warn("Media <%s> rejected, illegal priority (%u)\n", name,
|
||||
bearer_priority);
|
||||
|
Loading…
Reference in New Issue
Block a user