mirror of
https://github.com/checkpoint-restore/criu
synced 2025-08-22 09:58:09 +00:00
Due to code sharing, especially in IPC area, the unbinding is done via helper macros and sysclt engine tuning (new CTL_SHOW action added). Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org> Acked-by: Pavel Emelyanov <xemul@parallels.com>
35 lines
729 B
C
35 lines
729 B
C
#ifndef CR_SYSCTL_H_
|
|
#define CR_SYSCTL_H_
|
|
|
|
struct sysctl_req {
|
|
char *name;
|
|
void *arg;
|
|
int type;
|
|
};
|
|
|
|
extern int sysctl_op(struct sysctl_req *req, int op);
|
|
|
|
enum {
|
|
CTL_READ,
|
|
CTL_WRITE,
|
|
CTL_PRINT,
|
|
CTL_SHOW,
|
|
};
|
|
|
|
#define CTL_SHIFT 4 /* Up to 16 types */
|
|
|
|
#define CTL_U32 1 /* Single u32 */
|
|
#define CTL_U64 2 /* Single u64 */
|
|
#define __CTL_U32A 3 /* Array of u32 */
|
|
#define __CTL_U64A 4 /* Array of u64 */
|
|
#define __CTL_STR 5 /* String */
|
|
|
|
#define CTL_U32A(n) (__CTL_U32A | ((n) << CTL_SHIFT))
|
|
#define CTL_U64A(n) (__CTL_U64A | ((n) << CTL_SHIFT))
|
|
#define CTL_STR(len) (__CTL_STR | ((len) << CTL_SHIFT))
|
|
|
|
#define CTL_LEN(t) ((t) >> CTL_SHIFT)
|
|
#define CTL_TYPE(t) ((t) & ((1 << CTL_SHIFT) - 1))
|
|
|
|
#endif /* CR_SYSCTL_H_ */
|