Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a5ba4bf2 authored by Sven Wegener's avatar Sven Wegener Committed by Simon Horman
Browse files

ipvs: Return negative error values from ip_vs_edit_service()



Like the other code in this function does.

Signed-off-by: default avatarSven Wegener <sven.wegener@stealer.net>
Acked-by: default avatarJulius Volz <juliusv@google.com>
Signed-off-by: default avatarSimon Horman <horms@verge.net.au>
parent cd9fe6c4
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1284,11 +1284,11 @@ ip_vs_edit_service(struct ip_vs_service *svc, struct ip_vs_service_user_kern *u)
#ifdef CONFIG_IP_VS_IPV6
	if (u->af == AF_INET6) {
		if (!sched->supports_ipv6) {
			ret = EAFNOSUPPORT;
			ret = -EAFNOSUPPORT;
			goto out;
		}
		if ((u->netmask < 1) || (u->netmask > 128)) {
			ret = EINVAL;
			ret = -EINVAL;
			goto out;
		}
	}