]> git.baikalelectronics.ru Git - kernel.git/commit
Merge branch 'addr_assign_type'
authorDavid S. Miller <davem@davemloft.net>
Wed, 4 Sep 2013 00:57:57 +0000 (20:57 -0400)
committerDavid S. Miller <davem@davemloft.net>
Wed, 4 Sep 2013 00:57:57 +0000 (20:57 -0400)
commit5b53f9b8c5a69a71c945f305bf2f633d397f55c7
tree758a813e35f67ff4007a1f38bb12923315d7f1cf
parentb5b9ada4f371a1982b30a25a35de13ef4e24a51e
parenta91f3cc705596ecda7ae58d1cc67e8702da08e2a
Merge branch 'addr_assign_type'

Bjørn Mork says:

====================
net: set addr_assign_type when inheriting a dev_addr

Copying the dev_addr from a parent device is an operation
common to a number of drivers. The addr_assign_type should
be updated accordingly, either by reusing the value from
the source device or explicitly indicating that the address
is stolen by setting addr_assign_type to NET_ADDR_STOLEN.

This patch set adds a helper copying both the dev_addr and
the addr_assign_type, and use this helper in drivers which
don't currently set the addr_assign_type. Using NET_ADDR_STOLEN
might be more appropriate in some of these cases.  Please
let me know, and I'll update the patch accordingly.

Changes in v2:
 - assuming addr_len == ETH_ALEN to allow optimized memcpy
 - dropped the vt6656 patch due to addr_len being unset in that driver
====================

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