File: fixmap.h

package info (click to toggle)
linux-kernel-headers 2.5.999-test7-bk-17
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 28,268 kB
  • ctags: 214,024
  • sloc: ansic: 324,929; cpp: 783; makefile: 79; asm: 61; sh: 61
file content (19 lines) | stat: -rw-r--r-- 565 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef _ASM_FIXMAP_H
#define _ASM_FIXMAP_H

/*
 * Allocate a 8 Mb temporary mapping area for copy_user_page/clear_user_page.
 * This area needs to be aligned on a 8 Mb boundary.
 *
 * FIXME:
 *
 * For PA-RISC, this has no meaning.  It is starting to be used on x86
 * for vsyscalls.  PA will probably do this using space registers.
 */

/* This TMPALIAS_MAP_START reserves some of the memory where the
 * FIXMAP region is on x86.  It's only real use is to constrain
 * VMALLOC_END (see pktable.h) */
#define TMPALIAS_MAP_START (__PAGE_OFFSET - 0x01000000)

#endif