net/mld: Fix a few off-by-one alignment issues spotted by tools/nxstyle.

This commit is contained in:
Gregory Nutt 2018-11-06 15:08:16 -06:00
parent 62e4a41209
commit 813f4d424c
3 changed files with 27 additions and 27 deletions

View File

@ -88,9 +88,9 @@ int mld_done_v1(FAR struct net_driver_s *dev,
mldinfo("Version 1 Multicast Listener Done\n");
MLD_STATINCR(g_netstats.mld.done_received);
/* The done message is sent to the link-local, all routers multicast
* address. Find the group using the group address in the Done message.
*/
/* The done message is sent to the link-local, all routers multicast
* address. Find the group using the group address in the Done message.
*/
group = mld_grpfind(dev, done->grpaddr);
if (group == NULL)

View File

@ -117,18 +117,18 @@ void mld_poll(FAR struct net_driver_s *dev)
/* Indicate that the message has been sent */
CLR_MLD_SCHEDMSG(group->flags);
group->msgtype = MLD_SEND_NONE;
CLR_MLD_SCHEDMSG(group->flags);
group->msgtype = MLD_SEND_NONE;
/* If there is a thread waiting fore the message to be sent, wake
* it up.
*/
/* If there is a thread waiting fore the message to be sent, wake
* it up.
*/
if (IS_MLD_WAITMSG(group->flags))
{
mldinfo("Awakening waiter\n");
nxsem_post(&group->sem);
}
if (IS_MLD_WAITMSG(group->flags))
{
mldinfo("Awakening waiter\n");
nxsem_post(&group->sem);
}
/* And break out of the loop */

View File

@ -385,24 +385,24 @@ int mld_query(FAR struct net_driver_s *dev,
mld_check_querier(dev, ipv6, member);
/* Warn if we received a MLDv2 query in MLDv1 compatibility
* mode.
*/
/* Warn if we received a MLDv2 query in MLDv1 compatibility
* mode.
*/
if (!mldv1 && IS_MLD_V1COMPAT(member->flags))
{
mldinfo("WARNING: MLDv2 query received in MLDv1 "
"compatibility mode\n");
}
if (!mldv1 && IS_MLD_V1COMPAT(member->flags))
{
mldinfo("WARNING: MLDv2 query received in MLDv1 "
"compatibility mode\n");
}
#ifdef CONFIG_NET_MLD_ROUTER
/* Save the number of members that reported in the previous
* query cycle; reset the number of members that have
* reported in the new query cycle.
*/
/* Save the number of members that reported in the previous
* query cycle; reset the number of members that have
* reported in the new query cycle.
*/
member->lstmbrs = member->members;
member->members = 0;
member->lstmbrs = member->members;
member->members = 0;
#endif
}
}