]> git.baikalelectronics.ru Git - kernel.git/commit
Merge branch 'net-if_arp-use-define-instead-of-hard-coded-value'
authorDavid S. Miller <davem@davemloft.net>
Sat, 22 Sep 2018 02:22:32 +0000 (19:22 -0700)
committerDavid S. Miller <davem@davemloft.net>
Sat, 22 Sep 2018 02:22:32 +0000 (19:22 -0700)
commit4e5028dbd45998482a4d8e8fde76a6c7a9b45787
tree60fdc2678ff4aabc4906b5d2bb24738cf3ad7596
parent4e09428b5ad71f4ad8ccc57bcf3234304e6ae48b
parentd35ee32453d168f09ba91c5e909a66c72476e0c8
Merge branch 'net-if_arp-use-define-instead-of-hard-coded-value'

HÃ¥kon Bugge says:

====================
net: if_arp: use define instead of hard-coded value

Struct arpreq contains the name of the device. All other places in the
kernel, the define IFNAMSIZ is used to designate its size. But in
if_arp.h, a literal constant is used.

As it could be good reasons to use constants instead of the defines in
include files under uapi, it seems to be OK to use the define here,
without opening a can of worms in user-land.

This because if_arp.h includes netdevice.h, which also uses
IFNAMSIZ. For the distros I have checked, this also holds true for the
use-land side.

The series also fixes some incorrect indents.
====================

Signed-off-by: David S. Miller <davem@davemloft.net>