1. Apr 09, 2017
  2. Apr 08, 2017
  3. Apr 07, 2017
  4. Apr 06, 2017
  5. Apr 05, 2017
    • Linus Torvalds's avatar
      Merge tag 'kbuild-fixes-v4.11' of... · 9f0bffa1
      Linus Torvalds authored
      Merge tag 'kbuild-fixes-v4.11' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild
      
      Pull Kbuild fixes from Masahiro Yamada:
      
       - hand-off primary maintainership of Kbuild
      
       - fix build warnings
      
       - fix build error when GCOV is enabled with old compiler
      
       - fix HAVE_ASM_GOTO check when GCC plugin is enabled
      
      * tag 'kbuild-fixes-v4.11' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild:
        gconfig: remove misleading parentheses around a condition
        jump label: fix passing kbuild_cflags when checking for asm goto support
        Kbuild: use cc-disable-warning consistently for maybe-uninitialized
        kbuild: external module build warnings when KBUILD_OUTPUT set and W=1
        MAINTAINERS: add Masahiro Yamada as a Kbuild maintainer
      9f0bffa1
    • LABBE Corentin's avatar
      selftests: add a generic testsuite for ethernet device · af0e5461
      LABBE Corentin authored
      
      
      This patch add a generic testsuite for testing ethernet network device driver.
      
      Signed-off-by: default avatarCorentin Labbe <clabbe.montjoie@gmail.com>
      Tested-by: default avatarAndrew Lunn <andrew@lunn.ch>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      af0e5461
    • David S. Miller's avatar
      Merge branch 'rtnetlink-event-type' · 2e507e24
      David S. Miller authored
      
      
      Vladislav Yasevich says:
      
      ====================
      rtnetlink: Updates to rtnetlink_event()
      
      This series came out of the conversation that started as a result
      my first attempt to add netdevice event info to netlink messages.
      
      This series converts event processing to a 'white list', where
      we explicitely permit events to generate netlink messages.  This
      is meant to make people take a closer look and determine wheter
      these events should really trigger netlink messages.
      
      I am also adding a V2 of my patch to add event type to the netlink
      message.  This version supports all events that we currently generate.
      
      I will also update my patch to iproute that will show this data
      through 'ip monitor'.
      
      I actually need the ability to trap NETDEV_NOTIFY_PEERS event
      (as well as possible NETDEV_RESEND_IGMP) to support hanlding of
      macvtap on top of bonding.  I hope others will also find this info usefull.
      
      V2: Added missed events (from David Ahern)
      ====================
      
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      2e507e24
    • Vlad Yasevich's avatar
      rtnl: Add support for netdev event to link messages · def12888
      Vlad Yasevich authored
      
      
      When netdev events happen, a rtnetlink_event() handler will send
      messages for every event in it's white list.  These messages contain
      current information about a particular device, but they do not include
      the iformation about which event just happened.  The consumer of
      the message has to try to infer this information.  In some cases
      (ex: NETDEV_NOTIFY_PEERS), that is not possible.
      
      This patch adds a new extension to RTM_NEWLINK message called IFLA_EVENT
      that would have an encoding of the which event triggered this
      message.  This would allow the the message consumer to easily determine
      if it is interested in a particular event or not.
      
      Signed-off-by: default avatarVladislav Yasevich <vyasevic@redhat.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      def12888