From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932180AbWEARnD (ORCPT ); Mon, 1 May 2006 13:43:03 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S932176AbWEARnD (ORCPT ); Mon, 1 May 2006 13:43:03 -0400 Received: from linux01.gwdg.de ([134.76.13.21]:51640 "EHLO linux01.gwdg.de") by vger.kernel.org with ESMTP id S932174AbWEARnA (ORCPT ); Mon, 1 May 2006 13:43:00 -0400 Date: Mon, 1 May 2006 19:42:33 +0200 (MEST) From: Jan Engelhardt To: Greg KH cc: Arjan van de Ven , James Morris , Christoph Hellwig , Andrew Morton , Stephen Smalley , T?r?k Edwin , linux-security-module@vger.kernel.org, linux-kernel@vger.kernel.org, Chris Wright , Linus Torvalds Subject: Re: [PATCH 4a/4] MultiAdmin LSM (LKCS'ed) In-Reply-To: <20060501164740.GA8995@kroah.com> Message-ID: References: <20060417195146.GA8875@kroah.com> <1145462454.3085.62.camel@laptopd505.fenrus.org> <20060419201154.GB20545@kroah.com> <20060421150529.GA15811@kroah.com> <20060501164740.GA8995@kroah.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org >asm #include goes last. How come? >> +static inline int range_intersect_wrt(uid_t, uid_t, uid_t, uid_t); > >inline functions don't need definitions like this. If memory serves right, callees mentioned below their callers need a prototype. >> +static gid_t Supergid = -1, Subgid = -1; >> +static uid_t Superuid_start = 0, Superuid_end = 0, >> + Subuid_start = -1, Subuid_end = -1, >> + Netuid = -1, Wrtuid_start = -1, Wrtuid_end = -1; >> +static int Secondary = 0; > >Variables do not have capital letters. Who has, besides macros, if anything? Jan Engelhardt --