search for: _memory_padding

Displaying 1 result from an estimated 1 matches for "_memory_padding".

2005 May 31
0
[PATCH] Store page and evtchn in start_info_t
...rking/xen/include/public/xen.h --- xen-unstable/xen/include/public/xen.h 2005-05-24 13:10:17.000000000 +1000 +++ xen-unstable-working/xen/include/public/xen.h 2005-05-31 17:36:49.000000000 +1000 @@ -461,7 +461,10 @@ memory_t mod_len; /* 56: Size (bytes) of pre-loaded module. */ _MEMORY_PADDING(G); s8 cmd_line[MAX_CMDLINE]; /* 64 */ -} PACKED start_info_t; /* 320 bytes */ + memory_t store_page; /* 320: VIRTUAL address of store ringbuffer page. */ + _MEMORY_PADDING(H); + u16 store_evtchn; /* 328: Event channel for store communication. */ +} PACKED start_info_t; /...