lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Tue, 01 Jul 2014 22:14:23 -0700 (PDT)
From:	David Miller <davem@...emloft.net>
To:	joe@...ches.com
Cc:	f.fainelli@...il.com, varkabhadram@...il.com,
	netdev@...r.kernel.org, varkab@...c.in,
	linux-zigbee-devel@...ts.sourceforge.net
Subject: Re: [Linux-zigbee-devel] [PATCH net-next v3] 6lowpan: mac802154:
 fix coding style issues

From: Joe Perches <joe@...ches.com>
Date: Tue, 01 Jul 2014 21:58:10 -0700

> The code is currently:
> 
> 	__raw_writel(upper_32_bits(addr) & DESC_ADDR_HI_MASK,
> 			d + DESC_ADDR_HI_STATUS_LEN);
> 
> 1st line has 1 leading tab,
> 2nd line has 3 leading tabs
> 
> For networking code style, this should be:
> 
> 	__raw_writel(upper_32_bits(addr) & DESC_ADDR_HI_MASK,
> 		     d + DESC_ADDR_HI_STATUS_LEN);
> 
> 1st line has 1 leading tab,
> 2nd line has 2 leading tabs followed by 5 leading spaces
> 
> This aligns the 2nd line arguments to the position immediately
> after the open parenthesis.

+1
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ