]> Git Repo - linux.git/commitdiff
RDS: Workaround for in-use MRs on close causing crash
authorAndy Grover <[email protected]>
Thu, 11 Mar 2010 13:50:01 +0000 (13:50 +0000)
committerDavid S. Miller <[email protected]>
Wed, 17 Mar 2010 04:16:56 +0000 (21:16 -0700)
if a machine is shut down without closing sockets properly, and
freeing all MRs, then a BUG_ON will bring it down. This patch
changes these to WARN_ONs -- leaking MRs is not fatal (although
not ideal, and there is more work to do here for a proper fix.)

Signed-off-by: Andy Grover <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
net/rds/ib_rdma.c

index 4b0da865a72c2ee323999b1810a3a19a3a07709d..65e668defe4285648f79193d1c342f877a3f25fb 100644 (file)
@@ -234,8 +234,8 @@ void rds_ib_destroy_mr_pool(struct rds_ib_mr_pool *pool)
 {
        flush_workqueue(rds_wq);
        rds_ib_flush_mr_pool(pool, 1);
-       BUG_ON(atomic_read(&pool->item_count));
-       BUG_ON(atomic_read(&pool->free_pinned));
+       WARN_ON(atomic_read(&pool->item_count));
+       WARN_ON(atomic_read(&pool->free_pinned));
        kfree(pool);
 }
 
This page took 0.054607 seconds and 4 git commands to generate.