Merge branch 'master'
authorSteven Whitehouse <swhiteho@redhat.com>
Mon, 17 Jul 2006 13:25:26 +0000 (09:25 -0400)
committerSteven Whitehouse <swhiteho@redhat.com>
Mon, 17 Jul 2006 13:25:26 +0000 (09:25 -0400)
1  2 
CREDITS
MAINTAINERS
fs/Kconfig
include/linux/fs.h
include/linux/kernel.h

diff --cc CREDITS
Simple merge
diff --cc MAINTAINERS
Simple merge
diff --cc fs/Kconfig
Simple merge
Simple merge
index c3958ea8d126a2c89955eb174802ba0bc854f6dc,181c69cad4e3a45dca58bd6c50c2ae3d3e95f5b1..06c2768e133002ae548eac4abbe2c9de4e29bbfd
@@@ -32,8 -32,8 +32,9 @@@ extern const char linux_banner[]
  
  #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
  #define ALIGN(x,a) (((x)+(a)-1)&~((a)-1))
 +#define DIV_ROUND_UP(n,d) (((n) + (d) - 1) / (d))
  #define FIELD_SIZEOF(t, f) (sizeof(((t*)0)->f))
+ #define roundup(x, y) ((((x) + ((y) - 1)) / (y)) * (y))
  
  #define       KERN_EMERG      "<0>"   /* system is unusable                   */
  #define       KERN_ALERT      "<1>"   /* action must be taken immediately     */