1. 31 8月, 2019 18 次提交
  2. 25 8月, 2019 1 次提交
  3. 23 8月, 2019 1 次提交
  4. 22 8月, 2019 2 次提交
  5. 19 8月, 2019 7 次提交
  6. 11 8月, 2019 1 次提交
  7. 06 8月, 2019 1 次提交
  8. 02 8月, 2019 2 次提交
  9. 31 7月, 2019 2 次提交
    • S
      net: Remove dev_err() usage after platform_get_irq() · d1a55841
      Stephen Boyd 提交于
      We don't need dev_err() messages when platform_get_irq() fails now that
      platform_get_irq() prints an error message itself when something goes
      wrong. Let's remove these prints with a simple semantic patch.
      
      // <smpl>
      @@
      expression ret;
      struct platform_device *E;
      @@
      
      ret =
      (
      platform_get_irq(E, ...)
      |
      platform_get_irq_byname(E, ...)
      );
      
      if ( \( ret < 0 \| ret <= 0 \) )
      {
      (
      -if (ret != -EPROBE_DEFER)
      -{ ...
      -dev_err(...);
      -... }
      |
      ...
      -dev_err(...);
      )
      ...
      }
      // </smpl>
      
      While we're here, remove braces on if statements that only have one
      statement (manually).
      
      Cc: "David S. Miller" <davem@davemloft.net>
      Cc: Kalle Valo <kvalo@codeaurora.org>
      Cc: Saeed Mahameed <saeedm@mellanox.com>
      Cc: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
      Cc: Felix Fietkau <nbd@nbd.name>
      Cc: Lorenzo Bianconi <lorenzo@kernel.org>
      Cc: netdev@vger.kernel.org
      Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
      Signed-off-by: NStephen Boyd <swboyd@chromium.org>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      d1a55841
    • J
      net: Use skb_frag_off accessors · b54c9d5b
      Jonathan Lemon 提交于
      Use accessor functions for skb fragment's page_offset instead
      of direct references, in preparation for bvec conversion.
      Signed-off-by: NJonathan Lemon <jonathan.lemon@gmail.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      b54c9d5b
  10. 30 7月, 2019 5 次提交