Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 187c03a3 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman
Browse files

ANDROID: GKI: preserve ABI for struct sock_cgroup_data



In commit ad0f75e5f57c ("cgroup: fix cgroup_sk_alloc() for
sk_clone_lock()") the struct sock_cgroup_data fields are changed a bit,
in a way that keeps the same size and functionality, it just packs
another bit into the structure.

Because this does not really change the abi, tell the genksyms detector
that nothing has changed so that the ABI checker is happy.

Bug: 161946584
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@google.com>
Change-Id: Ibc748616140ac0da69b04699cfd2322dc4e5d1f4
parent 68815d5b
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -797,9 +797,13 @@ struct sock_cgroup_data {
	union {
#ifdef __LITTLE_ENDIAN
		struct {
#ifdef __GENKSYMS__
			u8	is_data;
#else
			u8	is_data : 1;
			u8	no_refcnt : 1;
			u8	unused : 6;
#endif
			u8	padding;
			u16	prioidx;
			u32	classid;