Re: [V2 PATCH 6/9] csiostor: Chelsio FCoE offload driver submission (headers part 1).
From: Stephen Hemminger <hidden>
Date: 2012-09-05 16:33:05
Also in:
linux-scsi
From: Stephen Hemminger <hidden>
Date: 2012-09-05 16:33:05
Also in:
linux-scsi
On Wed, 5 Sep 2012 18:03:59 +0530 Naresh Kumar Inna [off-list ref] wrote:
+
+#define CSIO_ASSERT(cond) \
+do { \
+ if (unlikely(!((cond)))) \
+ BUG(); \
+} while (0)
+Why is this not just BUG_ON(!(cond)) ?