1. 15 3月, 2008 2 次提交
  2. 29 2月, 2008 5 次提交
  3. 26 2月, 2008 5 次提交
  4. 30 1月, 2008 8 次提交
  5. 29 1月, 2008 1 次提交
  6. 07 12月, 2007 1 次提交
  7. 20 10月, 2007 1 次提交
  8. 10 10月, 2007 1 次提交
  9. 08 8月, 2007 1 次提交
    • T
      SUNRPC: Fix a race in rpciod_down() · b247bbf1
      Trond Myklebust 提交于
      The commit 4ada539e lead to the unpleasant
      possibility of an asynchronous rpc_task being required to call
      rpciod_down() when it is complete. This again means that the rpciod
      workqueue may get to call destroy_workqueue on itself -> hang...
      
      Change rpciod_up/rpciod_down to just get/put the module, and then
      create/destroy the workqueues on module load/unload.
      Signed-off-by: NTrond Myklebust <Trond.Myklebust@netapp.com>
      b247bbf1
  10. 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
  11. 11 7月, 2007 9 次提交
  12. 15 5月, 2007 1 次提交
  13. 10 5月, 2007 2 次提交
  14. 09 5月, 2007 1 次提交
  15. 01 5月, 2007 1 次提交
    • C
      SUNRPC: Eliminate side effects from rpc_malloc · c5a4dd8b
      Chuck Lever 提交于
      Currently rpc_malloc sets req->rq_buffer internally.  Make this a more
      generic interface:  return a pointer to the new buffer (or NULL) and
      make the caller set req->rq_buffer and req->rq_bufsize.  This looks much
      more like kmalloc and eliminates the side effects.
      
      To fix a potential deadlock, this patch also replaces GFP_NOFS with
      GFP_NOWAIT in rpc_malloc.  This prevents async RPCs from sleeping outside
      the RPC's task scheduler while allocating their buffer.
      Signed-off-by: NChuck Lever <chuck.lever@oracle.com>
      Signed-off-by: NTrond Myklebust <Trond.Myklebust@netapp.com>
      c5a4dd8b