1. 22 10月, 2013 1 次提交
  2. 18 6月, 2013 1 次提交
  3. 20 4月, 2013 3 次提交
  4. 19 3月, 2013 1 次提交
  5. 09 1月, 2013 1 次提交
  6. 07 1月, 2013 1 次提交
  7. 08 12月, 2012 1 次提交
  8. 05 12月, 2012 1 次提交
  9. 04 12月, 2012 1 次提交
  10. 20 11月, 2012 1 次提交
  11. 04 11月, 2012 1 次提交
  12. 08 9月, 2012 1 次提交
  13. 24 8月, 2012 1 次提交
  14. 21 8月, 2012 1 次提交
    • T
      workqueue: deprecate flush[_delayed]_work_sync() · 43829731
      Tejun Heo 提交于
      flush[_delayed]_work_sync() are now spurious.  Mark them deprecated
      and convert all users to flush[_delayed]_work().
      
      If you're cc'd and wondering what's going on: Now all workqueues are
      non-reentrant and the regular flushes guarantee that the work item is
      not pending or running on any CPU on return, so there's no reason to
      use the sync flushes at all and they're going away.
      
      This patch doesn't make any functional difference.
      Signed-off-by: NTejun Heo <tj@kernel.org>
      Cc: Russell King <linux@arm.linux.org.uk>
      Cc: Paul Mundt <lethal@linux-sh.org>
      Cc: Ian Campbell <ian.campbell@citrix.com>
      Cc: Jens Axboe <axboe@kernel.dk>
      Cc: Mattia Dongili <malattia@linux.it>
      Cc: Kent Yoder <key@linux.vnet.ibm.com>
      Cc: David Airlie <airlied@linux.ie>
      Cc: Jiri Kosina <jkosina@suse.cz>
      Cc: Karsten Keil <isdn@linux-pingi.de>
      Cc: Bryan Wu <bryan.wu@canonical.com>
      Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
      Cc: Alasdair Kergon <agk@redhat.com>
      Cc: Mauro Carvalho Chehab <mchehab@infradead.org>
      Cc: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
      Cc: David Woodhouse <dwmw2@infradead.org>
      Cc: "David S. Miller" <davem@davemloft.net>
      Cc: linux-wireless@vger.kernel.org
      Cc: Anton Vorontsov <cbou@mail.ru>
      Cc: Sangbeom Kim <sbkim73@samsung.com>
      Cc: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
      Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
      Cc: Eric Van Hensbergen <ericvh@gmail.com>
      Cc: Takashi Iwai <tiwai@suse.de>
      Cc: Steven Whitehouse <swhiteho@redhat.com>
      Cc: Petr Vandrovec <petr@vandrovec.name>
      Cc: Mark Fasheh <mfasheh@suse.com>
      Cc: Christoph Hellwig <hch@infradead.org>
      Cc: Avi Kivity <avi@redhat.com> 
      43829731
  15. 23 7月, 2012 1 次提交
  16. 11 7月, 2012 3 次提交
  17. 05 7月, 2012 1 次提交
  18. 07 6月, 2012 1 次提交
    • J
      ethernet: Remove casts to same type · 64699336
      Joe Perches 提交于
      Adding casts of objects to the same type is unnecessary
      and confusing for a human reader.
      
      For example, this cast:
      
              int y;
              int *p = (int *)&y;
      
      I used the coccinelle script below to find and remove these
      unnecessary casts.  I manually removed the conversions this
      script produces of casts with __force, __iomem and __user.
      
      @@
      type T;
      T *p;
      @@
      
      -       (T *)p
      +       p
      
      A function in atl1e_main.c was passed a const pointer
      when it actually modified elements of the structure.
      
      Change the argument to a non-const pointer.
      
      A function in stmmac needed a __force to avoid a sparse
      warning.  Added it.
      Signed-off-by: NJoe Perches <joe@perches.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      64699336
  19. 07 4月, 2012 2 次提交
  20. 05 4月, 2012 1 次提交
  21. 04 4月, 2012 1 次提交
  22. 29 3月, 2012 1 次提交
  23. 24 2月, 2012 1 次提交
  24. 07 2月, 2012 1 次提交
  25. 01 2月, 2012 1 次提交
  26. 09 12月, 2011 1 次提交
  27. 29 11月, 2011 1 次提交
  28. 17 11月, 2011 1 次提交
  29. 09 11月, 2011 1 次提交
  30. 01 11月, 2011 1 次提交
  31. 19 10月, 2011 1 次提交
  32. 08 10月, 2011 1 次提交
  33. 07 10月, 2011 1 次提交
  34. 06 10月, 2011 1 次提交
  35. 23 9月, 2011 1 次提交