Merge branch 'master'

This commit is contained in:
Steven Whitehouse 2006-07-17 09:25:26 -04:00
commit 4bf311ddfb
1097 changed files with 18558 additions and 10101 deletions

View file

@ -34,6 +34,7 @@ extern const char linux_banner[];
#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 */