mirror of
https://github.com/checkpoint-restore/criu
synced 2025-08-22 09:58:09 +00:00
sockets: Update unix_diag.h
Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org>
This commit is contained in:
parent
942355c166
commit
34b2ba0c06
@ -18,6 +18,7 @@ struct unix_diag_req {
|
|||||||
#define UDIAG_SHOW_PEER 0x00000004 /* show peer socket info */
|
#define UDIAG_SHOW_PEER 0x00000004 /* show peer socket info */
|
||||||
#define UDIAG_SHOW_ICONS 0x00000008 /* show pending connections */
|
#define UDIAG_SHOW_ICONS 0x00000008 /* show pending connections */
|
||||||
#define UDIAG_SHOW_RQLEN 0x00000010 /* show skb receive queue len */
|
#define UDIAG_SHOW_RQLEN 0x00000010 /* show skb receive queue len */
|
||||||
|
#define UDIAG_SHOW_MEMINFO 0x00000020 /* show memory info of a socket */
|
||||||
|
|
||||||
struct unix_diag_msg {
|
struct unix_diag_msg {
|
||||||
u8 udiag_family;
|
u8 udiag_family;
|
||||||
@ -29,12 +30,25 @@ struct unix_diag_msg {
|
|||||||
u32 udiag_cookie[2];
|
u32 udiag_cookie[2];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
enum {
|
||||||
|
SK_MEMINFO_RMEM_ALLOC,
|
||||||
|
SK_MEMINFO_RCVBUF,
|
||||||
|
SK_MEMINFO_WMEM_ALLOC,
|
||||||
|
SK_MEMINFO_SNDBUF,
|
||||||
|
SK_MEMINFO_FWD_ALLOC,
|
||||||
|
SK_MEMINFO_WMEM_QUEUED,
|
||||||
|
SK_MEMINFO_OPTMEM,
|
||||||
|
|
||||||
|
SK_MEMINFO_VARS,
|
||||||
|
};
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
UNIX_DIAG_NAME,
|
UNIX_DIAG_NAME,
|
||||||
UNIX_DIAG_VFS,
|
UNIX_DIAG_VFS,
|
||||||
UNIX_DIAG_PEER,
|
UNIX_DIAG_PEER,
|
||||||
UNIX_DIAG_ICONS,
|
UNIX_DIAG_ICONS,
|
||||||
UNIX_DIAG_RQLEN,
|
UNIX_DIAG_RQLEN,
|
||||||
|
UNIX_DIAG_MEMINFO,
|
||||||
|
|
||||||
UNIX_DIAG_MAX,
|
UNIX_DIAG_MAX,
|
||||||
};
|
};
|
||||||
@ -44,4 +58,9 @@ struct unix_diag_vfs {
|
|||||||
u32 udiag_vfs_dev;
|
u32 udiag_vfs_dev;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
struct unix_diag_rqlen {
|
||||||
|
u32 udiag_rqueue;
|
||||||
|
u32 udiag_wqueue;
|
||||||
|
};
|
||||||
|
|
||||||
#endif /* UNIX_DIAG_H__ */
|
#endif /* UNIX_DIAG_H__ */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user