1. 25 9月, 2017 1 次提交
  2. 25 8月, 2017 3 次提交
  3. 24 7月, 2017 1 次提交
  4. 23 7月, 2017 5 次提交
  5. 20 7月, 2017 1 次提交
  6. 18 7月, 2017 2 次提交
  7. 06 7月, 2017 1 次提交
  8. 16 6月, 2017 1 次提交
    • J
      networking: make skb_push & __skb_push return void pointers · d58ff351
      Johannes Berg 提交于
      It seems like a historic accident that these return unsigned char *,
      and in many places that means casts are required, more often than not.
      
      Make these functions return void * and remove all the casts across
      the tree, adding a (u8 *) cast only where the unsigned char pointer
      was used directly, all done with the following spatch:
      
          @@
          expression SKB, LEN;
          typedef u8;
          identifier fn = { skb_push, __skb_push, skb_push_rcsum };
          @@
          - *(fn(SKB, LEN))
          + *(u8 *)fn(SKB, LEN)
      
          @@
          expression E, SKB, LEN;
          identifier fn = { skb_push, __skb_push, skb_push_rcsum };
          type T;
          @@
          - E = ((T *)(fn(SKB, LEN)))
          + E = fn(SKB, LEN)
      
          @@
          expression SKB, LEN;
          identifier fn = { skb_push, __skb_push, skb_push_rcsum };
          @@
          - fn(SKB, LEN)[0]
          + *(u8 *)fn(SKB, LEN)
      
      Note that the last part there converts from push(...)[0] to the
      more idiomatic *(u8 *)push(...).
      Signed-off-by: NJohannes Berg <johannes.berg@intel.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      d58ff351
  9. 15 6月, 2017 3 次提交
  10. 02 6月, 2017 1 次提交
  11. 02 5月, 2017 5 次提交
  12. 29 4月, 2017 1 次提交
  13. 21 4月, 2017 4 次提交
  14. 06 4月, 2017 1 次提交
  15. 15 2月, 2017 1 次提交
  16. 25 1月, 2017 3 次提交
  17. 13 1月, 2017 5 次提交
  18. 04 12月, 2016 1 次提交