Skip to content
  1. Oct 26, 2018
  2. Oct 25, 2018
  3. Oct 22, 2018
  4. Oct 21, 2018
    • Greg Kroah-Hartman's avatar
      Merge branch 'i2c/for-current' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux · 467e050e
      Greg Kroah-Hartman authored
      Wolfram writes:
        "i2c for 4.19
      
         Another driver bugfix and MAINTAINERS addition from I2C."
      
      * 'i2c/for-current' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux:
        i2c: rcar: cleanup DMA for all kinds of failure
        MAINTAINERS: Add entry for Broadcom STB I2C controller
      467e050e
    • Greg Kroah-Hartman's avatar
      Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net · 23469de6
      Greg Kroah-Hartman authored
      David writes:
        "Networking:
      
         A few straggler bug fixes:
      
         1) Fix indexing of multi-pass dumps of ipv6 addresses, from David
            Ahern.
      
         2) Revert RCU locking change for bonding netpoll, causes worse
            problems than it solves.
      
         3) pskb_trim_rcsum_slow() doesn't handle odd trim offsets, resulting
            in erroneous bad hw checksum triggers with CHECKSUM_COMPLETE
            devices.  From Dimitris Michailidis.
      
         4) a revert to some neighbour code changes that adjust notifications
            in a way that confuses some apps."
      
      * git://git.kernel.org/pub/scm/linux/kernel/git/davem/net:
        Revert "neighbour: force neigh_invalidate when NUD_FAILED update is from admin"
        net/ipv6: Fix index counter for unicast addresses in in6_dump_addrs
        net: fix pskb_trim_rcsum_slow() with odd trim offset
        Revert "bond: take rcu lock in netpoll_send_skb_on_dev"
      23469de6
    • Roopa Prabhu's avatar
      Revert "neighbour: force neigh_invalidate when NUD_FAILED update is from admin" · d2fb4fb8
      Roopa Prabhu authored
      This reverts commit 8e326289
      
      .
      
      This patch results in unnecessary netlink notification when one
      tries to delete a neigh entry already in NUD_FAILED state. Found
      this with a buggy app that tries to delete a NUD_FAILED entry
      repeatedly. While the notification issue can be fixed with more
      checks, adding more complexity here seems unnecessary. Also,
      recent tests with other changes in the neighbour code have
      shown that the INCOMPLETE and PROBE checks are good enough for
      the original issue.
      
      Signed-off-by: default avatarRoopa Prabhu <roopa@cumulusnetworks.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      d2fb4fb8
    • David Ahern's avatar
      net/ipv6: Fix index counter for unicast addresses in in6_dump_addrs · 4ba4c566
      David Ahern authored
      The loop wants to skip previously dumped addresses, so loops until
      current index >= saved index. If the message fills it wants to save
      the index for the next address to dump - ie., the one that did not
      fit in the current message.
      
      Currently, it is incrementing the index counter before comparing to the
      saved index, and then the saved index is off by 1 - it assumes the
      current address is going to fit in the message.
      
      Change the index handling to increment only after a succesful dump.
      
      Fixes: 502a2ffd
      
       ("ipv6: convert idev_list to list macros")
      Signed-off-by: default avatarDavid Ahern <dsahern@gmail.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      4ba4c566
  5. Oct 20, 2018