From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754930Ab3JaRQd (ORCPT ); Thu, 31 Oct 2013 13:16:33 -0400 Received: from mx1.redhat.com ([209.132.183.28]:59590 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751772Ab3JaRQc (ORCPT ); Thu, 31 Oct 2013 13:16:32 -0400 Date: Thu, 31 Oct 2013 18:18:10 +0100 From: Oleg Nesterov To: Richard Guy Briggs Cc: linux-audit@redhat.com, linux-kernel@vger.kernel.org, "Eric W. Biederman" , Eric Paris Subject: Re: [PATCH 3/4][v2] audit: move audit_aux_data_execve contents into audit_context union Message-ID: <20131031171810.GA8757@redhat.com> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.18 (2008-05-17) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 10/31, Richard Guy Briggs wrote: > > --- a/kernel/audit.h > +++ b/kernel/audit.h > @@ -197,6 +197,10 @@ struct audit_context { > int fd; > int flags; > } mmap; > + struct { > + int argc; > + struct mm_struct *mm; > + } execve; Ah, nice, so we should not worry about kmalloc(GFP_KERNEL) failure. I am in no position to ack the changes in this area, but the whole series looks fine to me. Oleg.