dect
/
linux-2.6
Archived
13
0
Fork 0

[XFS] Include linux/random.h in all builds, not just debug builds.

SGI-PV: 979416
SGI-Modid: xfs-linux-melb:xfs-kern:31008a

Signed-off-by: David Chinner <dgc@sgi.com>
Signed-off-by: Lachlan McIlroy <lachlan@sgi.com>
This commit is contained in:
David Chinner 2008-04-30 18:15:34 +10:00 committed by Lachlan McIlroy
parent adaa693b84
commit a94477da38
2 changed files with 1 additions and 2 deletions

View File

@ -75,6 +75,7 @@
#include <linux/delay.h>
#include <linux/log2.h>
#include <linux/spinlock.h>
#include <linux/random.h>
#include <asm/page.h>
#include <asm/div64.h>

View File

@ -49,8 +49,6 @@ extern void assfail(char *expr, char *f, int l);
#else /* DEBUG */
#include <linux/random.h>
#define ASSERT(expr) \
(unlikely(expr) ? (void)0 : assfail(#expr, __FILE__, __LINE__))