1. 19 6月, 2010 1 次提交
    • S
      ieee1394: remove unused variables · 5030c807
      Stefan Richter 提交于
      which caused gcc 4.6 to warn about
          variable 'XYZ' set but not used.
      
      sbp2.c, unit_characteristics:
      
      The underlying problem which was spotted here --- an incomplete
      implementation --- is already 50% fixed in drivers/firewire/sbp2.c which
      observes mgt_ORB_timeout but not yet ORB_size.
      
      raw1394.c, length_conflict; dv1394.c, ts_off:
      
      Impossible to tell why these variables are there.  We can safely remove
      them though because we don't need a compiler warning to realize that we
      are dealing with (at least stylistically) flawed code here.
      
      dv1394.c, packet_time:
      
      This was used in debug macro that is only compiled in with
      DV1394_DEBUG_LEVEL >= 2 defined at compile-time.  Just drop it since
      nobody debugs dv1394 anymore.  Avoids noise in regular kernel builds.
      
      dv1394.c, ohci; eth1394.c, priv:
      
      These variables clearly can go away.  Somebody wanted to use them but
      then didn't (or not anymore).
      
      Note, all of this code is considered to be at its end of life and is
      thus not really meant to receive janitorial updates anymore.  But if we
      can easily remove noisy warnings from kernel builds, we should.
      Reported-by: NJustin P. Mattock <justinmattock@gmail.com>
      Signed-off-by: NStefan Richter <stefanr@s5r6.in-berlin.de>
      5030c807
  2. 03 9月, 2009 1 次提交
  3. 02 9月, 2009 1 次提交
  4. 01 9月, 2009 1 次提交
  5. 16 6月, 2009 1 次提交
  6. 25 3月, 2009 2 次提交
  7. 07 1月, 2009 3 次提交
  8. 05 1月, 2009 2 次提交
  9. 16 10月, 2008 1 次提交
  10. 17 10月, 2007 2 次提交
  11. 11 10月, 2007 3 次提交
  12. 20 7月, 2007 1 次提交
    • P
      mm: Remove slab destructors from kmem_cache_create(). · 20c2df83
      Paul Mundt 提交于
      Slab destructors were no longer supported after Christoph's
      c59def9f change. They've been
      BUGs for both slab and slub, and slob never supported them
      either.
      
      This rips out support for the dtor pointer from kmem_cache_create()
      completely and fixes up every single callsite in the kernel (there were
      about 224, not including the slab allocator definitions themselves,
      or the documentation references).
      Signed-off-by: NPaul Mundt <lethal@linux-sh.org>
      20c2df83
  13. 10 7月, 2007 1 次提交
  14. 16 6月, 2007 1 次提交
    • C
      ieee1394: fix to ether1394_tx in ether1394.c · 18b46179
      Carlos E. Ugarte 提交于
      This patch fixes a problem that occurs when packets cannot be sent across
      the ieee1394 bus and we return NETDEV_TX_BUSY in the net driver "hard start
      xmit" routine ether1394_tx. When we return NETDEV_TX_BUSY the stack will
      call ether1394_tx again with the same skb. So we need to restore the header
      to look like it did before we munged it for xmit over ieee1394.
      
      [Stefan Richter: changed whitespace, deleted a local variable]
      Signed-off-by: NStefan Richter <stefanr@s5r6.in-berlin.de>
      18b46179
  15. 28 5月, 2007 3 次提交
  16. 30 4月, 2007 16 次提交