aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorbehlendo <behlendo@7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c>2008-04-23 21:19:47 +0000
committerbehlendo <behlendo@7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c>2008-04-23 21:19:47 +0000
commit6e605b6e5824c300b9e1953fe4ac9c8fc15d695f (patch)
tree6ce2960fd7de21d4e1daf95286b0ce883d5c325d /include
parent18c9eadf976dda5c4b36f86290e674ec3e85f7dc (diff)
Minor improvement to taskq handling. This is a small step towards
dynamic taskqs which still need to be fully implemented. git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@87 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c
Diffstat (limited to 'include')
-rw-r--r--include/sys/debug.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sys/debug.h b/include/sys/debug.h
index ab881c5bf..64aa1808f 100644
--- a/include/sys/debug.h
+++ b/include/sys/debug.h
@@ -198,7 +198,7 @@ do { \
do { \
if (unlikely(!(cond))) { \
printk(KERN_ERR "ASSERTION(" #cond ") failed"); \
- SBUG(); \
+ BUG(); \
} \
} while (0)