mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-05-30 19:15:41 +00:00
ipvs: Use IS_ERR_OR_NULL(svc) instead of IS_ERR(svc) || svc == NULL
This minor refactoring does not change the logic of function ip_vs_genl_dump_dests. Signed-off-by: Gao Feng <fgao@ikuai8.com> Acked-by: Julian Anastasov <ja@ssi.bg> Signed-off-by: Simon Horman <horms@verge.net.au>
This commit is contained in:
parent
7d384846b9
commit
fe24a0c3a9
1 changed files with 1 additions and 1 deletions
|
@ -3260,7 +3260,7 @@ static int ip_vs_genl_dump_dests(struct sk_buff *skb,
|
|||
|
||||
|
||||
svc = ip_vs_genl_find_service(ipvs, attrs[IPVS_CMD_ATTR_SERVICE]);
|
||||
if (IS_ERR(svc) || svc == NULL)
|
||||
if (IS_ERR_OR_NULL(svc))
|
||||
goto out_err;
|
||||
|
||||
/* Dump the destinations */
|
||||
|
|
Loading…
Add table
Reference in a new issue