aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Chagin <dchagin@FreeBSD.org>2019-05-06 19:56:13 +0000
committerDmitry Chagin <dchagin@FreeBSD.org>2019-05-06 19:56:13 +0000
commit9c1437ae571b48d3b8684de5d3913a9f9f52871c (patch)
tree78647c83e84068039e5e6ddf348b416c58bad832
parent141b1c328d34a54b78d91481bfe5f465ee68c3c0 (diff)
downloadsrc-9c1437ae571b48d3b8684de5d3913a9f9f52871c.tar.gz
src-9c1437ae571b48d3b8684de5d3913a9f9f52871c.zip
a final revision. Fix style issues and change bool-like variables from int to bool. Reviewed by: emaste MFC after: 2 weeks Differential Revision: https://reviews.freebsd.org/D20141
Notes
Notes: svn path=/head/; revision=347202
-rw-r--r--sys/compat/linux/linux.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/sys/compat/linux/linux.c b/sys/compat/linux/linux.c
index 75f90dc4e492..af17e135e1ca 100644
--- a/sys/compat/linux/linux.c
+++ b/sys/compat/linux/linux.c
@@ -227,21 +227,22 @@ ifname_linux_to_bsd(struct thread *td, const char *lxname, char *bsdname)
struct ifnet *ifp;
int len, unit;
char *ep;
- int is_eth, is_lo, index;
+ int index;
+ bool is_eth, is_lo;
for (len = 0; len < LINUX_IFNAMSIZ; ++len)
- if (!isalpha(lxname[len]) || lxname[len] == 0)
+ if (!isalpha(lxname[len]) || lxname[len] == '\0')
break;
if (len == 0 || len == LINUX_IFNAMSIZ)
return (NULL);
/* Linux loopback interface name is lo (not lo0) */
- is_lo = (len == 2 && !strncmp(lxname, "lo", len)) ? 1 : 0;
+ is_lo = (len == 2 && strncmp(lxname, "lo", len) == 0);
unit = (int)strtoul(lxname + len, &ep, 10);
if ((ep == NULL || ep == lxname + len || ep >= lxname + LINUX_IFNAMSIZ) &&
is_lo == 0)
return (NULL);
index = 0;
- is_eth = (len == 3 && !strncmp(lxname, "eth", len)) ? 1 : 0;
+ is_eth = (len == 3 && strncmp(lxname, "eth", len) == 0);
CURVNET_SET(TD_TO_VNET(td));
IFNET_RLOCK();