From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S261571AbUK1S5O (ORCPT ); Sun, 28 Nov 2004 13:57:14 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S261570AbUK1S5O (ORCPT ); Sun, 28 Nov 2004 13:57:14 -0500 Received: from mailout.stusta.mhn.de ([141.84.69.5]:57615 "HELO mailout.stusta.mhn.de") by vger.kernel.org with SMTP id S261571AbUK1S4Y (ORCPT ); Sun, 28 Nov 2004 13:56:24 -0500 Date: Sun, 28 Nov 2004 19:56:22 +0100 From: Adrian Bunk To: "Michael A. Halcrow" , Serge Hallyn Cc: linux-kernel@vger.kernel.org Subject: [2.6 patch] security/seclvl.c: make some code static Message-ID: <20041128185622.GC4390@stusta.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.6+20040907i Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org The patch below makes some needlessly global code static. diffstat output: security/seclvl.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) Signed-off-by: Adrian Bunk --- linux-2.6.10-rc2-mm3-full/security/seclvl.c.old 2004-11-28 03:32:23.000000000 +0100 +++ linux-2.6.10-rc2-mm3-full/security/seclvl.c 2004-11-28 03:34:28.000000000 +0100 @@ -170,7 +170,7 @@ /** * Callback function pointers for show and store */ -struct sysfs_ops seclvlfs_sysfs_ops = { +static struct sysfs_ops seclvlfs_sysfs_ops = { .show = seclvl_attr_show, .store = seclvl_attr_store, }; @@ -275,7 +275,7 @@ } /* Generate sysfs_attr_seclvl */ -struct seclvl_attribute sysfs_attr_seclvl = +static struct seclvl_attribute sysfs_attr_seclvl = __ATTR(seclvl, (S_IFREG | S_IRUGO | S_IWUSR), seclvl_read_file, seclvl_write_file); @@ -386,7 +386,7 @@ } /* Generate sysfs_attr_passwd */ -struct seclvl_attribute sysfs_attr_passwd = +static struct seclvl_attribute sysfs_attr_passwd = __ATTR(passwd, (S_IFREG | S_IRUGO | S_IWUSR), seclvl_read_passwd, seclvl_write_passwd);