Home | History | Annotate | Download | only in linux

Lines Matching refs:why

280 #define J_EXPECT(expr, why...)		J_ASSERT(expr)
281 #define J_EXPECT_BH(bh, expr, why...) J_ASSERT_BH(bh, expr)
282 #define J_EXPECT_JH(jh, expr, why...) J_ASSERT_JH(jh, expr)
284 #define __journal_expect(expr, why...) \
290 printk(KERN_ERR why "\n"); \
294 #define J_EXPECT(expr, why...) __journal_expect(expr, ## why)
295 #define J_EXPECT_BH(bh, expr, why...) __journal_expect(expr, ## why)
296 #define J_EXPECT_JH(jh, expr, why...) __journal_expect(expr, ## why)