linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Kees Cook <keescook@chromium.org>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: Stephen Rothwell <sfr@canb.auug.org.au>,
	linux-next@vger.kernel.org, linux-kernel@vger.kernel.org,
	Fengguang Wu <fengguang.wu@intel.com>
Subject: Re: linux-next: build failure after merge of the akpm tree
Date: Wed, 26 Sep 2012 13:42:05 -0700	[thread overview]
Message-ID: <CAGXu5jK1i_0t+qGpC0XfE=G1r5qWJDfx2A64T1Yb=w2LDiLW1g@mail.gmail.com> (raw)
In-Reply-To: <20120926133335.b012417e.akpm@linux-foundation.org>

Hi,

Thanks! This almost matched what I was preparing. Notes below...

On Wed, Sep 26, 2012 at 1:33 PM, Andrew Morton
<akpm@linux-foundation.org> wrote:
> On Wed, 26 Sep 2012 13:15:58 -0700
> Kees Cook <keescook@chromium.org> wrote:
>
>> This is weird -- my original patch doesn't touch audit_get_sessionid() at all:
>> http://git.kernel.org/?p=linux/kernel/git/kees/linux.git;a=commitdiff;h=7bbfec58ed33d5e74043530b87992f16da718ba2
>
> That patch has been broken multiple times as things change under its
> feet.  I've just repaired my most recent attempt to repair it.
>
>
> From: Kees Cook <keescook@chromium.org>
> Subject: audit.h: replace defines with C stubs
>
> Replace the #defines used when CONFIG_AUDIT or CONFIG_AUDIT_SYSCALLS are
> disabled so we get type checking during those builds.
>
> Suggested-by: Andrew Morton <akpm@linux-foundation.org>
> Signed-off-by: Kees Cook <keescook@chromium.org>
> Cc: Al Viro <viro@zeniv.linux.org.uk>
> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
> ---
>
>  include/linux/audit.h |  206 +++++++++++++++++++++++++++++-----------
>  1 file changed, 153 insertions(+), 53 deletions(-)
>
> diff -puN include/linux/audit.h~audith-replace-defines-with-c-stubs include/linux/audit.h
> --- a/include/linux/audit.h~audith-replace-defines-with-c-stubs
> +++ a/include/linux/audit.h
> @@ -528,9 +528,18 @@ static inline void audit_ptrace(struct t
>  extern unsigned int audit_serial(void);
>  extern int auditsc_get_stamp(struct audit_context *ctx,
>                               struct timespec *t, unsigned int *serial);
> -extern int  audit_set_loginuid(kuid_t loginuid);
> -#define audit_get_loginuid(t) ((t)->loginuid)
> -#define audit_get_sessionid(t) ((t)->sessionid)
> +extern int audit_set_loginuid(kuid_t loginuid);
> +
> +static inline int audit_get_loginuid(struct task_struct *tsk)

Shouldn't this return kuid_t, due to "userns: Convert the audit
loginuid  to be a kuid"?

> +{
> +       return tsk->loginuid
> +}
> +
> +static inline int audit_get_sessionid(struct task_struct *tsk)
> +{
> +       return tsk->sessionid;
> +}
> +
>  extern void audit_log_task_context(struct audit_buffer *ab);
>  extern void audit_log_task_info(struct audit_buffer *ab, struct task_struct *tsk);
>  extern void __audit_ipc_obj(struct kern_ipc_perm *ipcp);
> @@ -627,38 +636,101 @@ static inline void audit_mmap_fd(int fd,
>  extern int audit_n_rules;
>  extern int audit_signals;
>  #else /* CONFIG_AUDITSYSCALL */
> -#define audit_alloc(t) ({ 0; })
> -#define audit_free(t) do { ; } while (0)
> -#define audit_syscall_entry(ta,a,b,c,d,e) do { ; } while (0)
> -#define audit_syscall_exit(r) do { ; } while (0)
> -#define audit_dummy_context() 1
> -#define audit_getname(n) do { ; } while (0)
> -#define audit_putname(n) do { ; } while (0)
> -#define __audit_inode(n,d) do { ; } while (0)
> -#define __audit_inode_child(i,p) do { ; } while (0)
> -#define audit_inode(n,d) do { (void)(d); } while (0)
> -#define audit_inode_child(i,p) do { ; } while (0)
> -#define audit_core_dumps(i) do { ; } while (0)
> -#define audit_seccomp(i,s,c) do { ; } while (0)
> -#define auditsc_get_stamp(c,t,s) (0)
> -#define audit_get_loginuid(t) (INVALID_UID)
> -#define audit_get_sessionid(t) (-1)
> -#define audit_log_task_context(b) do { ; } while (0)
> -#define audit_log_task_info(b, t) do { ; } while (0)
> -#define audit_ipc_obj(i) ((void)0)
> -#define audit_ipc_set_perm(q,u,g,m) ((void)0)
> -#define audit_bprm(p) ({ 0; })
> -#define audit_socketcall(n,a) ((void)0)
> -#define audit_fd_pair(n,a) ((void)0)
> -#define audit_sockaddr(len, addr) ({ 0; })
> -#define audit_mq_open(o,m,a) ((void)0)
> -#define audit_mq_sendrecv(d,l,p,t) ((void)0)
> -#define audit_mq_notify(d,n) ((void)0)
> -#define audit_mq_getsetattr(d,s) ((void)0)
> -#define audit_log_bprm_fcaps(b, ncr, ocr) ({ 0; })
> -#define audit_log_capset(pid, ncr, ocr) ((void)0)
> -#define audit_mmap_fd(fd, flags) ((void)0)
> -#define audit_ptrace(t) ((void)0)
> +static inline int audit_alloc(struct task_struct *task)
> +{
> +       return 0;
> +}
> +static inline void audit_free(struct task_struct *task)
> +{ }
> +static inline void audit_syscall_entry(int arch, int major, unsigned long a0,
> +                                      unsigned long a1, unsigned long a2,
> +                                      unsigned long a3)
> +{ }
> +static inline void audit_syscall_exit(void *pt_regs)
> +{ }
> +static inline int audit_dummy_context(void)
> +{
> +       return 1;
> +}
> +static inline void audit_getname(const char *name)
> +{ }
> +static inline void audit_putname(const char *name)
> +{ }
> +static inline void __audit_inode(const char *name, const struct dentry *dentry)
> +{ }
> +static inline void __audit_inode_child(const struct dentry *dentry,
> +                                       const struct inode *parent)
> +{ }
> +static inline void audit_inode(const char *name, const struct dentry *dentry)
> +{ }
> +static inline void audit_inode_child(const struct dentry *dentry,
> +                                    const struct inode *parent)
> +{ }
> +static inline void audit_core_dumps(long signr)
> +{ }
> +static inline void __audit_seccomp(unsigned long syscall, long signr, int code)
> +{ }
> +static inline void audit_seccomp(unsigned long syscall, long signr, int code)
> +{ }
> +static inline int auditsc_get_stamp(struct audit_context *ctx,
> +                             struct timespec *t, unsigned int *serial)
> +{
> +       return 0;
> +}
> +static inline int audit_get_loginuid(struct task_struct *tsk)

Same here?

> +{
> +       return INVALID_UID;
> +}
> +static inline int audit_get_sessionid(struct task_struct *tsk)
> +{
> +       return -1;
> +}
> +static inline void audit_log_task_context(struct audit_buffer *ab)
> +{ }
> +static inline void audit_log_task_info(struct audit_buffer *ab,
> +                                      struct task_struct *tsk)
> +{ }
> +static inline void audit_ipc_obj(struct kern_ipc_perm *ipcp)
> +{ }
> +static inline void audit_ipc_set_perm(unsigned long qbytes, uid_t uid,
> +                                       gid_t gid, umode_t mode)
> +{ }
> +static inline int audit_bprm(struct linux_binprm *bprm)
> +{
> +       return 0;
> +}
> +static inline void audit_socketcall(int nargs, unsigned long *args)
> +{ }
> +static inline void audit_fd_pair(int fd1, int fd2)
> +{ }
> +static inline int audit_sockaddr(int len, void *addr)
> +{
> +       return 0;
> +}
> +static inline void audit_mq_open(int oflag, umode_t mode, struct mq_attr *attr)
> +{ }
> +static inline void audit_mq_sendrecv(mqd_t mqdes, size_t msg_len,
> +                                    unsigned int msg_prio,
> +                                    const struct timespec *abs_timeout)
> +{ }
> +static inline void audit_mq_notify(mqd_t mqdes,
> +                                  const struct sigevent *notification)
> +{ }
> +static inline void audit_mq_getsetattr(mqd_t mqdes, struct mq_attr *mqstat)
> +{ }
> +static inline int audit_log_bprm_fcaps(struct linux_binprm *bprm,
> +                                      const struct cred *new,
> +                                      const struct cred *old)
> +{
> +       return 0;
> +}
> +static inline void audit_log_capset(pid_t pid, const struct cred *new,
> +                                  const struct cred *old)
> +{ }
> +static inline void audit_mmap_fd(int fd, int flags)
> +{ }
> +static inline void audit_ptrace(struct task_struct *t)
> +{ }
>  #define audit_n_rules 0
>  #define audit_signals 0
>  #endif /* CONFIG_AUDITSYSCALL */
> @@ -682,7 +754,6 @@ extern void             audit_log_n_hex(struct
>  extern void                audit_log_n_string(struct audit_buffer *ab,
>                                                const char *buf,
>                                                size_t n);
> -#define audit_log_string(a,b) audit_log_n_string(a, b, strlen(b));
>  extern void                audit_log_n_untrustedstring(struct audit_buffer *ab,
>                                                         const char *string,
>                                                         size_t n);
> @@ -699,7 +770,8 @@ extern void             audit_log_lost(const ch
>  #ifdef CONFIG_SECURITY
>  extern void                audit_log_secctx(struct audit_buffer *ab, u32 secid);
>  #else
> -#define audit_log_secctx(b,s) do { ; } while (0)
> +static inline void         audit_log_secctx(struct audit_buffer *ab, u32 secid)
> +{ }
>  #endif
>
>  extern int                 audit_update_lsm_rules(void);
> @@ -711,22 +783,50 @@ extern int  audit_receive_filter(int typ
>                                 void *data, size_t datasz, kuid_t loginuid,
>                                 u32 sessionid, u32 sid);
>  extern int audit_enabled;
> -#else
> -#define audit_log(c,g,t,f,...) do { ; } while (0)
> -#define audit_log_start(c,g,t) ({ NULL; })
> -#define audit_log_vformat(b,f,a) do { ; } while (0)
> -#define audit_log_format(b,f,...) do { ; } while (0)
> -#define audit_log_end(b) do { ; } while (0)
> -#define audit_log_n_hex(a,b,l) do { ; } while (0)
> -#define audit_log_n_string(a,c,l) do { ; } while (0)
> -#define audit_log_string(a,c) do { ; } while (0)
> -#define audit_log_n_untrustedstring(a,n,s) do { ; } while (0)
> -#define audit_log_untrustedstring(a,s) do { ; } while (0)
> -#define audit_log_d_path(b, p, d) do { ; } while (0)
> -#define audit_log_key(b, k) do { ; } while (0)
> -#define audit_log_link_denied(o, l) do { ; } while (0)
> -#define audit_log_secctx(b,s) do { ; } while (0)
> +#else /* CONFIG_AUDIT */
> +static inline __printf(4, 5)
> +void audit_log(struct audit_context *ctx, gfp_t gfp_mask, int type,
> +              const char *fmt, ...)
> +{ }
> +static inline struct audit_buffer *audit_log_start(struct audit_context *ctx,
> +                                                  gfp_t gfp_mask, int type)
> +{
> +       return NULL;
> +}
> +static inline __printf(2, 3)
> +void audit_log_format(struct audit_buffer *ab, const char *fmt, ...)
> +{ }
> +static inline void audit_log_end(struct audit_buffer *ab)
> +{ }
> +static inline void audit_log_n_hex(struct audit_buffer *ab,
> +                                  const unsigned char *buf, size_t len)
> +{ }
> +static inline void audit_log_n_string(struct audit_buffer *ab,
> +                                     const char *buf, size_t n)
> +{ }
> +static inline void  audit_log_n_untrustedstring(struct audit_buffer *ab,
> +                                               const char *string, size_t n)
> +{ }
> +static inline void audit_log_untrustedstring(struct audit_buffer *ab,
> +                                            const char *string)
> +{ }
> +static inline void audit_log_d_path(struct audit_buffer *ab,
> +                                   const char *prefix,
> +                                   const struct path *path)
> +{ }
> +static inline void audit_log_key(struct audit_buffer *ab, char *key)
> +{ }
> +static inline void audit_log_link_denied(const char *string,
> +                                        const struct path *link)
> +{ }
> +static inline void audit_log_secctx(struct audit_buffer *ab, u32 secid)
> +{ }
>  #define audit_enabled 0
> -#endif
> +#endif /* CONFIG_AUDIT */
> +static inline void audit_log_string(struct audit_buffer *ab, const char *buf)
> +{
> +       audit_log_n_string(ab, buf, strlen(buf));
> +}
> +
>  #endif
>  #endif
> _
>

-Kees

-- 
Kees Cook
Chrome OS Security

  reply	other threads:[~2012-09-26 20:42 UTC|newest]

Thread overview: 259+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-09-26  6:01 linux-next: build failure after merge of the akpm tree Stephen Rothwell
2012-09-26 20:15 ` Kees Cook
2012-09-26 20:33   ` Andrew Morton
2012-09-26 20:42     ` Kees Cook [this message]
2012-09-26 20:47       ` Andrew Morton
2012-09-27  7:26     ` Stephen Rothwell
  -- strict thread matches above, loose matches on Subject: below --
2022-03-07 10:55 Stephen Rothwell
2022-03-07 16:43 ` Johannes Weiner
2022-03-07 21:27   ` Stephen Rothwell
2021-12-20 11:08 Stephen Rothwell
2021-12-20 12:44 ` Muchun Song
2021-12-01  5:06 Stephen Rothwell
2021-06-17  9:32 Stephen Rothwell
2021-06-17 12:15 ` Muneendra Kumar M
2021-06-16 13:07 Stephen Rothwell
2021-06-18  8:24 ` Stephen Rothwell
2020-12-21  5:16 Stephen Rothwell
2020-12-10  9:33 Stephen Rothwell
2020-12-03  8:52 Stephen Rothwell
2020-12-03 12:48 ` Andrey Konovalov
2020-11-13  7:02 Stephen Rothwell
2020-11-14  1:14 ` Andrew Morton
2020-11-15  9:01   ` Mike Rapoport
2020-11-16  6:17     ` Stephen Rothwell
2020-11-11  6:20 Stephen Rothwell
2020-09-28 11:25 Stephen Rothwell
2020-09-28 11:29 ` Christoph Hellwig
2020-09-08 10:45 Stephen Rothwell
2020-06-04  6:44 Stephen Rothwell
2020-06-04  8:24 ` Stephen Rothwell
2020-06-02  9:57 Stephen Rothwell
2020-06-02 19:12 ` Andrew Morton
2020-05-28 10:19 Stephen Rothwell
2020-05-28 13:15 ` Christoph Hellwig
2020-05-25 12:17 Stephen Rothwell
2020-05-25 18:18 ` John Hubbard
2020-05-25 22:17   ` Stephen Rothwell
2020-04-22  6:39 Stephen Rothwell
2020-04-22 18:33 ` Haren Myneni
2020-03-02  4:23 Stephen Rothwell
2020-02-27  4:11 Stephen Rothwell
2020-02-27  5:20 ` Arjun Roy
2020-02-27  9:02 ` Geert Uytterhoeven
2020-02-27 17:13   ` Arjun Roy
2020-02-27 17:44     ` Arjun Roy
2020-02-27 17:57       ` Geert Uytterhoeven
2020-02-27 18:50         ` Arjun Roy
2020-02-27 21:28           ` Stephen Rothwell
2020-02-28  0:34             ` Arjun Roy
2020-02-28  0:59               ` Stephen Rothwell
2020-02-27 21:27         ` Stephen Rothwell
2020-02-17  3:57 Stephen Rothwell
2020-02-17  4:12 ` Arjun Roy
2020-02-17  6:45   ` Arjun Roy
2020-02-20 23:18     ` Stephen Rothwell
2020-02-20 23:22       ` Arjun Roy
2020-02-20 23:43         ` Stephen Rothwell
2020-02-20 23:44           ` Arjun Roy
2020-02-20 23:59             ` Stephen Rothwell
2020-02-21 21:29               ` Arjun Roy
2020-02-26  4:02 ` Stephen Rothwell
2020-02-26  4:25   ` Arjun Roy
2020-01-22  7:05 Stephen Rothwell
2019-02-26  7:39 Stephen Rothwell
2019-02-26  8:16 ` Mike Rapoport
2018-12-03  7:00 Stephen Rothwell
2018-12-03 10:37 ` Anshuman Khandual
2018-12-12 17:05 ` Anshuman Khandual
2018-12-12 20:44   ` Stephen Rothwell
2018-11-30  5:30 Stephen Rothwell
2018-11-30 10:27 ` Anshuman Khandual
2018-10-08  8:03 Stephen Rothwell
2018-10-15  7:14 ` Stephen Rothwell
2018-10-16  7:46   ` Ingo Molnar
2018-10-05  6:14 Stephen Rothwell
2018-10-05 12:02 ` Michael Ellerman
2018-10-05 12:46   ` Stephen Rothwell
2018-10-06 12:10     ` Michael Ellerman
2018-10-02  8:53 Stephen Rothwell
2018-03-21  8:17 Stephen Rothwell
2018-03-21 10:02 ` Greg Kroah-Hartman
2018-03-21 10:38   ` Stephen Rothwell
2017-11-06  6:55 Stephen Rothwell
2017-08-01  6:25 Stephen Rothwell
2017-08-01 18:40 ` Kees Cook
2017-08-01 20:44   ` Arnd Bergmann
2017-06-30  6:32 Stephen Rothwell
2017-07-03  8:14 ` Stephen Rothwell
2017-07-03  8:57 ` David Miller
2017-06-26  6:53 Stephen Rothwell
2017-06-26  7:13 ` Michal Hocko
2017-06-26 21:48   ` Stephen Rothwell
2017-04-20  6:18 Stephen Rothwell
2017-04-18  8:09 Stephen Rothwell
2017-04-10  7:51 Stephen Rothwell
2017-03-20  5:37 Stephen Rothwell
2017-03-20 13:07 ` Michal Hocko
2017-03-20 13:22   ` Jaegeuk Kim
2017-03-07  3:07 Stephen Rothwell
2017-03-07  3:55 ` Laura Abbott
2017-03-07  2:38 Stephen Rothwell
2017-01-09  4:09 Stephen Rothwell
2015-12-31 12:22 Stephen Rothwell
2016-01-14  4:15 ` Stephen Rothwell
2016-01-15 21:05   ` Andrew Morton
2016-01-15 23:00     ` Stephen Rothwell
2016-01-15 23:14       ` Andrew Morton
2016-01-16  8:51         ` Takashi Iwai
2016-01-20 14:09           ` Takashi Iwai
2016-01-20 20:38             ` Stephen Rothwell
2016-01-22  0:24               ` Stephen Rothwell
2016-01-22  2:40                 ` Stephen Rothwell
2016-01-25  9:29                   ` Takashi Iwai
2016-01-25  9:40                     ` Michael Ellerman
2016-01-25 10:19                       ` Takashi Iwai
2016-01-25 10:41                     ` Vinod Koul
2016-01-25 10:42                       ` Takashi Iwai
2016-01-25 10:45                     ` Sudip Mukherjee
2016-01-25 11:03                       ` Takashi Iwai
2016-01-25 11:18                         ` Sudip Mukherjee
2016-01-25 11:41                     ` Mark Brown
2016-01-25 13:10                       ` Takashi Iwai
2016-01-25 13:45                         ` Takashi Iwai
2016-01-25 13:55                           ` Mark Brown
2016-01-26 12:47                             ` Vinod Koul
2016-01-25 14:02                           ` Sudip Mukherjee
2016-01-26 12:26                           ` Vinod Koul
2016-01-26 20:51                           ` Stephen Rothwell
2016-01-26 21:22                             ` Takashi Iwai
2016-01-22  3:03                 ` Stephen Rothwell
2015-11-01 16:29 Stephen Rothwell
2015-10-06  7:03 Stephen Rothwell
2015-09-08  4:53 Stephen Rothwell
2015-07-14  5:19 Stephen Rothwell
2015-06-25  8:00 Stephen Rothwell
2015-06-20 14:31 Stephen Rothwell
2014-11-06  8:36 Stephen Rothwell
2014-11-06 11:24 ` Thierry Reding
2014-11-06 11:30   ` Thierry Reding
2014-11-09 23:55   ` Stephen Rothwell
2014-08-26  7:18 Stephen Rothwell
2014-08-26 13:54 ` Don Zickus
2014-08-26 21:37   ` Stephen Rothwell
2014-07-16  8:26 Stephen Rothwell
2014-07-16  8:54 ` Michal Hocko
2014-03-06  8:22 Stephen Rothwell
2014-03-06 21:48 ` Andrew Morton
2014-03-07  0:57   ` Stephen Rothwell
2014-03-07  1:38     ` Andrew Morton
2014-03-07 17:05       ` Christoph Lameter
2014-03-07 21:08         ` Andrew Morton
2014-03-07 17:02 ` Christoph Lameter
2014-03-06  7:54 Stephen Rothwell
2013-09-25  1:06 Stephen Rothwell
2013-09-25  1:21 ` Timur Tabi
2013-09-25 20:26 ` Andrew Morton
2013-09-25 21:32   ` Hugh Dickins
2013-09-25 21:43     ` Andrew Morton
2013-10-02  8:53       ` Frederic Weisbecker
2013-07-16  5:18 Stephen Rothwell
2013-06-07  6:28 Stephen Rothwell
2013-06-07  7:26 ` Peng Tao
2013-06-07  7:52   ` Stephen Rothwell
2013-06-07  8:11     ` Peng Tao
2013-06-04  6:55 Stephen Rothwell
2013-05-27  6:39 Stephen Rothwell
2013-04-04  6:44 Stephen Rothwell
2013-03-27  4:43 Stephen Rothwell
2013-03-01  4:31 Stephen Rothwell
2013-02-28  1:15 Stephen Rothwell
2013-02-20  6:28 Stephen Rothwell
2013-02-11  7:13 Stephen Rothwell
2013-02-11 12:04 ` Amir Vadai
2013-02-06  6:59 Stephen Rothwell
2013-02-04  7:17 Stephen Rothwell
2012-12-18  2:29 Stephen Rothwell
2012-12-18 10:10 ` Mel Gorman
2012-12-10  8:58 Stephen Rothwell
2012-12-10  8:54 Stephen Rothwell
2012-12-10 10:43 ` Ingo Molnar
2012-11-09  3:39 Stephen Rothwell
2012-10-23  3:42 Stephen Rothwell
2012-10-23  4:21 ` Joe Perches
2012-10-23 19:44 ` Andrew Morton
2012-10-23 19:51   ` Joe Perches
2012-10-23 20:02     ` Andrew Morton
2012-10-24 19:19       ` Joe Perches
2012-10-24 19:38         ` Andrew Morton
2012-10-23  3:35 Stephen Rothwell
2012-09-28  6:30 Stephen Rothwell
2012-09-28 15:19 ` Mikulas Patocka
2012-10-01 19:56   ` Andrew Morton
2012-09-27  7:43 Stephen Rothwell
2012-09-24 14:02 Stephen Rothwell
2012-09-24 19:36 ` Roland Dreier
2012-09-24 19:46   ` Andrew Morton
2012-09-25  8:27   ` Jack Morgenstein
2012-09-21  6:26 Stephen Rothwell
2012-09-21  9:02 ` Denys Vlasenko
2012-09-21  6:08 Stephen Rothwell
2012-09-13  7:44 Stephen Rothwell
2012-09-13  7:49 ` Sachin Kamat
2012-09-13  8:31   ` Stephen Rothwell
2012-09-13  7:56 ` Andrew Morton
2012-09-13  8:31   ` Stephen Rothwell
2012-09-13 23:07     ` Stephen Rothwell
2012-09-13  8:46 ` Zhang Rui
2012-09-13 12:30   ` Stephen Rothwell
2012-08-06  3:43 Stephen Rothwell
2012-08-06  5:01 ` Michel Lespinasse
2012-08-06  5:04   ` Michel Lespinasse
2012-08-06  9:46     ` Steven Whitehouse
2012-07-31  4:40 Stephen Rothwell
2012-07-31  5:45 ` Michel Lespinasse
2012-07-31  6:31   ` Stephen Rothwell
2012-07-31 10:34 ` Michel Lespinasse
2012-06-25  6:41 Stephen Rothwell
2012-06-25 16:40 ` Kees Cook
2012-06-25 22:59   ` Stephen Rothwell
2012-04-27  5:38 Stephen Rothwell
2012-02-28  5:58 Stephen Rothwell
2012-02-28 12:00 ` Mark Brown
2012-02-28 22:08   ` Andrew Morton
2012-02-29 10:13     ` Mark Brown
2012-02-27  6:21 Stephen Rothwell
2012-02-27  6:31 ` H. Peter Anvin
2012-02-22  5:08 Stephen Rothwell
2012-02-17  5:21 Stephen Rothwell
2012-01-05  7:29 Stephen Rothwell
2012-01-05 23:52 ` Andrew Morton
2012-01-06  5:05   ` Greg KH
2012-01-06  7:22   ` Mike Galbraith
2012-01-05  7:29 Stephen Rothwell
2012-01-05 23:19 ` Greg KH
2012-01-05 23:45   ` Andrew Morton
2012-01-06  5:04     ` Greg KH
2011-12-16  5:39 Stephen Rothwell
2011-12-16 22:00 ` Andrew Morton
2011-12-17 17:49   ` Alexey Dobriyan
2011-12-18 22:43   ` Stephen Rothwell
2011-12-09  5:08 Stephen Rothwell
2011-12-09  5:47 ` Andrew Morton
2011-12-12  4:26   ` Stephen Rothwell
2011-12-12  4:41     ` Stephen Rothwell
2011-11-01  8:57 Stephen Rothwell
2011-10-05  8:07 Stephen Rothwell
2011-09-30  5:32 Stephen Rothwell
2011-09-30  6:02 ` Andrew Morton
2011-10-04  7:44   ` Stephen Rothwell
2011-09-28  9:22 Stephen Rothwell
2011-09-28 15:51 ` Joe Perches
2011-09-28 22:03 ` Andrew Morton
2011-09-16  6:21 Stephen Rothwell
2011-07-01  5:19 Stephen Rothwell
2011-07-01  5:32 ` Cong Wang
2011-07-01  7:08   ` Stephen Rothwell
2011-07-01 10:10     ` Cong Wang
2011-07-01 10:37       ` Stephen Rothwell
2011-07-04  1:30         ` Cong Wang

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CAGXu5jK1i_0t+qGpC0XfE=G1r5qWJDfx2A64T1Yb=w2LDiLW1g@mail.gmail.com' \
    --to=keescook@chromium.org \
    --cc=akpm@linux-foundation.org \
    --cc=fengguang.wu@intel.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-next@vger.kernel.org \
    --cc=sfr@canb.auug.org.au \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).