2.6.12 planetlab config file
[linux-2.6.git] / include / asm-generic / netdump.h
1 #ifndef _ASM_GENERIC_NETDUMP_H_
2 #define _ASM_GENERIC_NETDUMP_H_
3
4 /*
5  * linux/include/asm-generic/netdump.h
6  *
7  * Copyright (c) 2003, 2004 Red Hat, Inc. All rights reserved.
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2, or (at your option)
12  * any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22  */
23
24 #ifdef __KERNEL__
25
26 #warning netdump is not supported on this platform
27 const static int platform_supports_netdump = 0;
28
29 static inline int page_is_ram(unsigned long x) { return 0; }
30
31 #define platform_timestamp(x) do { (x) = 0; } while (0)  
32
33 #define platform_fix_regs() do { } while (0)
34 #define platform_init_stack(stackptr) do { } while (0)
35 #define platform_cleanup_stack(stackptr) do { } while (0)
36 #define platform_start_netdump(stackptr,regs) do { } while (0)
37 #define platform_max_pfn() do { int ret = 0; } while (0)
38
39 #undef ELF_CORE_COPY_REGS
40 #define ELF_CORE_COPY_REGS(x, y) do { struct pt_regs *z; z = (y); } while (0)
41
42 #define show_mem() do {} while (0)
43
44 #define show_state() do {} while (0)
45
46 #define show_regs(x) do { struct pt_regs *z; z = (x); } while (0)
47
48 #undef ZERO_PAGE
49 static inline struct page *ZERO_PAGE(void *x) { return NULL; }
50
51 #undef KM_NETDUMP
52 #define KM_NETDUMP 0
53
54 #undef kmap_atomic
55 #undef kunmap_atomic
56 static inline char *kmap_atomic(void *page, int idx)  { return NULL; }
57 #define kunmap_atomic(addr, idx)  do { } while (0)
58
59 #endif /* __KERNEL__ */
60
61 #endif /* _ASM_GENERIC_NETDUMP_H */