Merge "Merge android-4.19.36 (10f41ccfc) into msm-4.19"

This commit is contained in:
qctecmdr
2019-05-29 05:24:57 -07:00
committed by Gerrit - the friendly Code Review server
238 changed files with 2810 additions and 935 deletions

View File

@ -22,4 +22,20 @@ struct xt_cgroup_info_v1 {
void *priv __attribute__((aligned(8)));
};
#define XT_CGROUP_PATH_MAX 512
struct xt_cgroup_info_v2 {
__u8 has_path;
__u8 has_classid;
__u8 invert_path;
__u8 invert_classid;
union {
char path[XT_CGROUP_PATH_MAX];
__u32 classid;
};
/* kernel internal data */
void *priv __attribute__((aligned(8)));
};
#endif /* _UAPI_XT_CGROUP_H */