[GFS2] Fix up merge of Linus' kernel into GFS2
[linux-drm-fsl-dcu.git] / include / linux / kernel.h
index 2b2ae4fdce8bbd689e5be2fe52be1ccc3add879b..e44a37e2c71c60d4c45f6bb16729961a974c2c21 100644 (file)
@@ -33,6 +33,7 @@ extern const char linux_banner[];
 #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
 #define ALIGN(x,a) (((x)+(a)-1UL)&~((a)-1UL))
 #define FIELD_SIZEOF(t, f) (sizeof(((t*)0)->f))
+#define DIV_ROUND_UP(n,d) (((n) + (d) - 1) / (d))
 #define roundup(x, y) ((((x) + ((y) - 1)) / (y)) * (y))
 
 #define        KERN_EMERG      "<0>"   /* system is unusable                   */