In the get_zeroed_page()function, address = page_address(page)
1)Does address point to a contiguous block of 4KB of physical memory?     i.e.can I 
access the individual bytes by *address++?
2)How is page_address() function defined? I did a grep and found something like: 
#define page_address(page) ({ if (!(page)->virtual) BUG(); (page)->virtual; })? What's 
(page)->virtual?

Thanks
Any help would be greatly appreciated.

__________________________________________________________________
Get your own FREE, personal Netscape Webmail account today at 
http://webmail.netscape.com/
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to