kdataalign.c
上传用户:wudi5211
上传日期:2010-01-21
资源大小:607k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

C/C++

  1. /*
  2.  * kdatasize.c -- print the size of common data items from kernel space
  3.  * This runs with any Linux kernel (not any Unix, because of <linux/types.h>)
  4.  *
  5.  * Copyright (C) 2001 Alessandro Rubini and Jonathan Corbet
  6.  * Copyright (C) 2001 O'Reilly & Associates
  7.  *
  8.  * The source code in this file can be freely used, adapted,
  9.  * and redistributed in source or binary form, so long as an
  10.  * acknowledgment appears in derived source files.  The citation
  11.  * should list that the code comes from the book "Linux Device
  12.  * Drivers" by Alessandro Rubini and Jonathan Corbet, published
  13.  * by O'Reilly & Associates.   No warranty is attached;
  14.  * we cannot take responsibility for errors or fitness for use.
  15.  */
  16. #ifndef __KERNEL__
  17. #  define __KERNEL__
  18. #endif
  19. #ifndef MODULE
  20. #  define MODULE
  21. #endif
  22. #include <linux/config.h>
  23. #include <linux/module.h>
  24. #include <linux/kernel.h>
  25. #include <linux/types.h>
  26. #include <linux/utsname.h>
  27. #include <linux/errno.h>
  28. /*
  29.  * Define several data structures, all of them start with a lone char
  30.  * in order to present an unaligned offset for the next field
  31.  */
  32. struct c   {char c;  char      t;} c;
  33. struct s   {char c;  short     t;} s;
  34. struct i   {char c;  int       t;} i;
  35. struct l   {char c;  long      t;} l;
  36. struct ll  {char c;  long long t;} ll;
  37. struct p   {char c;  void *    t;} p;
  38. struct u1b {char c;  __u8      t;} u1b;
  39. struct u2b {char c;  __u16     t;} u2b;
  40. struct u4b {char c;  __u32     t;} u4b;
  41. struct u8b {char c;  __u64     t;} u8b;
  42. void cleanup_module(void)
  43. { /* never used */ }
  44. int init_module(void)
  45. {
  46.     /* print information and return an error */
  47.     printk("arch  Align:  char  short  int  long   ptr long-long "
  48.    " u8 u16 u32 u64n");
  49.     printk(       "%-12s  %3i   %3i   %3i   %3i   %3i   %3i      "
  50.    "%3i %3i %3i %3in",
  51.    system_utsname.machine,
  52.    /* note that gcc can subtract void * values, but it's not ansi */
  53.    (int)((void *)(&c.t)   - (void *)&c),
  54.    (int)((void *)(&s.t)   - (void *)&s),
  55.    (int)((void *)(&i.t)   - (void *)&i),
  56.    (int)((void *)(&l.t)   - (void *)&l),
  57.    (int)((void *)(&p.t)   - (void *)&p),
  58.    (int)((void *)(&ll.t)  - (void *)&ll),
  59.    (int)((void *)(&u1b.t) - (void *)&u1b),
  60.    (int)((void *)(&u2b.t) - (void *)&u2b),
  61.    (int)((void *)(&u4b.t) - (void *)&u4b),
  62.    (int)((void *)(&u8b.t) - (void *)&u8b));
  63.     return -ENODEV;
  64. }