Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9e2effba authored by Andy Grover's avatar Andy Grover
Browse files

RDS: Fix BUG_ONs to not fire when in a tasklet



in_interrupt() is true in softirqs. The BUG_ONs are supposed
to check for if irqs are disabled, so we should use
BUG_ON(irqs_disabled()) instead, duh.

Signed-off-by: default avatarAndy Grover <andy.grover@oracle.com>
parent db40980f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -441,7 +441,7 @@ static void __rds_ib_teardown_mr(struct rds_ib_mr *ibmr)

			/* FIXME we need a way to tell a r/w MR
			 * from a r/o MR */
			BUG_ON(in_interrupt());
			BUG_ON(irqs_disabled());
			set_page_dirty(page);
			put_page(page);
		}
+1 −1
Original line number Diff line number Diff line
@@ -440,7 +440,7 @@ void rds_rdma_free_op(struct rds_rdma_op *ro)
		 * is the case for a RDMA_READ which copies from remote
		 * to local memory */
		if (!ro->r_write) {
			BUG_ON(in_interrupt());
			BUG_ON(irqs_disabled());
			set_page_dirty(page);
		}
		put_page(page);