linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* addresses returned by __get_free_pages()
@ 2002-02-08  9:21 Martin Maletinsky
  2002-02-08 11:07 ` Stephen C. Tweedie
  0 siblings, 1 reply; 2+ messages in thread
From: Martin Maletinsky @ 2002-02-08  9:21 UTC (permalink / raw)
  To: kernelnewbies, linux-mm

Hello,

In the 2.4.x kernel, can I apply the virt_to_page() macro to any address allocated by __get_free_pages() (i.e. when calling ret = __get_free_pages(flags, order), to any
address in the interval [retval,  2^order * PAGE_SIZE])?

In other words are those addresses guaranteed to be kernel logical addresses (i.e. between PAGE_OFFSET and PAGE_OFFSET + high_memory (on ix86))?

I know that in the 2.2.x kernel this used to be the case (i.e. __get_free_pages() returned kernel
logical addresses, to which virt_to_page() could be applied), but I don't quite understand the
memory managment of 2.4.x yet.

Thanks in advance for any help
regards
Martin


--
Supercomputing System AG          email: maletinsky@scs.ch
Martin Maletinsky                 phone: +41 (0)1 445 16 05
Technoparkstrasse 1               fax:   +41 (0)1 445 16 10
CH-8005 Zurich


--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: addresses returned by __get_free_pages()
  2002-02-08  9:21 addresses returned by __get_free_pages() Martin Maletinsky
@ 2002-02-08 11:07 ` Stephen C. Tweedie
  0 siblings, 0 replies; 2+ messages in thread
From: Stephen C. Tweedie @ 2002-02-08 11:07 UTC (permalink / raw)
  To: Martin Maletinsky; +Cc: kernelnewbies, linux-mm

Hi,

On Fri, Feb 08, 2002 at 10:21:33AM +0100, Martin Maletinsky wrote:
 
> In the 2.4.x kernel, can I apply the virt_to_page() macro to any address allocated by __get_free_pages() (i.e. when calling ret = __get_free_pages(flags, order), to any
> address in the interval [retval,  2^order * PAGE_SIZE])?

Yes, but it's easier just to call "alloc_pages(flags, order)", which
returns a struct page in the first place.

> In other words are those addresses guaranteed to be kernel logical addresses (i.e. between PAGE_OFFSET and PAGE_OFFSET + high_memory (on ix86))?

Yes, unless you specify GFP_HIGHMEM in the allocation flags.

Cheers,
 Stephen
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2002-02-08 11:07 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-02-08  9:21 addresses returned by __get_free_pages() Martin Maletinsky
2002-02-08 11:07 ` Stephen C. Tweedie

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox