lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-ID: <m1d3vvhxlj.fsf@fess.ebiederm.org> Date: Sun, 13 Jun 2010 06:27:04 -0700 From: ebiederm@...ssion.com (Eric W. Biederman) To: David Miller <davem@...emloft.net> Cc: Serge Hallyn <serue@...ibm.com>, Linux Containers <containers@...ts.osdl.org>, Daniel Lezcano <daniel.lezcano@...e.fr>, <netdev@...r.kernel.org>, Pavel Emelyanov <xemul@...allels.com> Subject: [PATCH 1/8] scm: Reorder scm_cookie. Reorder the fields in scm_cookie so they pack better on 64bit. Signed-off-by: Eric W. Biederman <ebiederm@...ssion.com> --- include/net/scm.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/net/scm.h b/include/net/scm.h index 8360e47..17d9d2e 100644 --- a/include/net/scm.h +++ b/include/net/scm.h @@ -19,8 +19,8 @@ struct scm_fp_list { }; struct scm_cookie { - struct ucred creds; /* Skb credentials */ struct scm_fp_list *fp; /* Passed files */ + struct ucred creds; /* Skb credentials */ #ifdef CONFIG_SECURITY_NETWORK u32 secid; /* Passed security ID */ #endif -- 1.6.5.2.143.g8cc62 -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists