This should make it consistent with ip6_sk_dst_lookup_flow()
that is accepting the new 'connected' parameter of type bool.

Signed-off-by: Alexey Kodanev <alexey.koda...@oracle.com>
---
 net/ipv6/udp.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/net/ipv6/udp.c b/net/ipv6/udp.c
index 5bc102b2..4aa50ea 100644
--- a/net/ipv6/udp.c
+++ b/net/ipv6/udp.c
@@ -1097,10 +1097,10 @@ int udpv6_sendmsg(struct sock *sk, struct msghdr *msg, 
size_t len)
        struct dst_entry *dst;
        struct ipcm6_cookie ipc6;
        int addr_len = msg->msg_namelen;
+       bool connected = false;
        int ulen = len;
        int corkreq = up->corkflag || msg->msg_flags&MSG_MORE;
        int err;
-       int connected = 0;
        int is_udplite = IS_UDPLITE(sk);
        int (*getfrag)(void *, char *, int, int, int, struct sk_buff *);
        struct sockcm_cookie sockc;
@@ -1222,7 +1222,7 @@ int udpv6_sendmsg(struct sock *sk, struct msghdr *msg, 
size_t len)
                fl6.fl6_dport = inet->inet_dport;
                daddr = &sk->sk_v6_daddr;
                fl6.flowlabel = np->flow_label;
-               connected = 1;
+               connected = true;
        }
 
        if (!fl6.flowi6_oif)
@@ -1252,7 +1252,7 @@ int udpv6_sendmsg(struct sock *sk, struct msghdr *msg, 
size_t len)
                }
                if (!(opt->opt_nflen|opt->opt_flen))
                        opt = NULL;
-               connected = 0;
+               connected = false;
        }
        if (!opt) {
                opt = txopt_get(np);
@@ -1274,11 +1274,11 @@ int udpv6_sendmsg(struct sock *sk, struct msghdr *msg, 
size_t len)
 
        final_p = fl6_update_dst(&fl6, opt, &final);
        if (final_p)
-               connected = 0;
+               connected = false;
 
        if (!fl6.flowi6_oif && ipv6_addr_is_multicast(&fl6.daddr)) {
                fl6.flowi6_oif = np->mcast_oif;
-               connected = 0;
+               connected = false;
        } else if (!fl6.flowi6_oif)
                fl6.flowi6_oif = np->ucast_oif;
 
-- 
1.8.3.1

Reply via email to