diff options
author | Steven Whitehouse <swhiteho@redhat.com> | 2006-09-28 08:29:59 -0400 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2006-09-28 08:29:59 -0400 |
commit | 185a257f2f73bcd89050ad02da5bedbc28fc43fa (patch) | |
tree | 5e32586114534ed3f2165614cba3d578f5d87307 /net/sunrpc/sched.c | |
parent | 3f1a9aaeffd8d1cbc5ab9776c45cbd66af1c9699 (diff) | |
parent | a77c64c1a641950626181b4857abb701d8f38ccc (diff) |
Merge branch 'master' into gfs2
Diffstat (limited to 'net/sunrpc/sched.c')
-rw-r--r-- | net/sunrpc/sched.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/sunrpc/sched.c b/net/sunrpc/sched.c index 6390461a9756..a1ab4eed41f4 100644 --- a/net/sunrpc/sched.c +++ b/net/sunrpc/sched.c | |||
@@ -1059,10 +1059,10 @@ rpc_destroy_mempool(void) | |||
1059 | mempool_destroy(rpc_buffer_mempool); | 1059 | mempool_destroy(rpc_buffer_mempool); |
1060 | if (rpc_task_mempool) | 1060 | if (rpc_task_mempool) |
1061 | mempool_destroy(rpc_task_mempool); | 1061 | mempool_destroy(rpc_task_mempool); |
1062 | if (rpc_task_slabp && kmem_cache_destroy(rpc_task_slabp)) | 1062 | if (rpc_task_slabp) |
1063 | printk(KERN_INFO "rpc_task: not all structures were freed\n"); | 1063 | kmem_cache_destroy(rpc_task_slabp); |
1064 | if (rpc_buffer_slabp && kmem_cache_destroy(rpc_buffer_slabp)) | 1064 | if (rpc_buffer_slabp) |
1065 | printk(KERN_INFO "rpc_buffers: not all structures were freed\n"); | 1065 | kmem_cache_destroy(rpc_buffer_slabp); |
1066 | } | 1066 | } |
1067 | 1067 | ||
1068 | int | 1068 | int |