|
Revision 2413, 1.1 kB
(checked in by dhozac, 2 years ago)
|
Update kernel headers to 2.6.19-vs2.1.x-t7.
Use the headers from make headers_install to cut down on unnecessary files/content.
|
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
#ifndef _VX_LEGACY_H |
|---|
| 2 |
#define _VX_LEGACY_H |
|---|
| 3 |
|
|---|
| 4 |
#include "switch.h" |
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
#define VCMD_new_s_context VC_CMD(COMPAT, 1, 1) |
|---|
| 10 |
#define VCMD_set_ipv4root VC_CMD(COMPAT, 2, 3) |
|---|
| 11 |
|
|---|
| 12 |
#define VCMD_create_context VC_CMD(VSETUP, 1, 0) |
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
struct vcmd_new_s_context_v1 { |
|---|
| 17 |
uint32_t remove_cap; |
|---|
| 18 |
uint32_t flags; |
|---|
| 19 |
}; |
|---|
| 20 |
|
|---|
| 21 |
struct vcmd_set_ipv4root_v3 { |
|---|
| 22 |
|
|---|
| 23 |
uint32_t broadcast; |
|---|
| 24 |
struct { |
|---|
| 25 |
uint32_t ip; |
|---|
| 26 |
uint32_t mask; |
|---|
| 27 |
} nx_mask_pair[NB_IPV4ROOT]; |
|---|
| 28 |
}; |
|---|
| 29 |
|
|---|
| 30 |
|
|---|
| 31 |
#define VX_INFO_LOCK 1 |
|---|
| 32 |
#define VX_INFO_NPROC 4 |
|---|
| 33 |
#define VX_INFO_PRIVATE 8 |
|---|
| 34 |
#define VX_INFO_INIT 16 |
|---|
| 35 |
|
|---|
| 36 |
|
|---|
| 37 |
#define VX_INFO_HIDEINFO 32 |
|---|
| 38 |
#define VX_INFO_ULIMIT 64 |
|---|
| 39 |
|
|---|
| 40 |
|
|---|
| 41 |
#define VX_INFO_NAMESPACE 128 |
|---|
| 42 |
|
|---|
| 43 |
|
|---|
| 44 |
#endif |
|---|