Advertisement
Guest User

page struct

a guest
May 25th, 2015
302
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.26 KB | None | 0 0
  1.     struct page {
  2.  
  3.          unsigned long flags;
  4.          atomic_t _count;
  5.          atomic_t _mapcount;
  6.          unsigned long private;
  7.          struct address_space mapping;
  8.          pgoff_t index;
  9.          struct list_head lru;
  10.          void *virtual;
  11.     };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement