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: <1357213361-23620-8-git-send-email-andrzej.p@samsung.com> Date: Thu, 03 Jan 2013 12:42:40 +0100 From: Andrzej Pietrasiewicz <andrzej.p@...sung.com> To: linux-kernel@...r.kernel.org Cc: Andrzej Pietrasiewicz <andrzej.p@...sung.com>, Kyungmin Park <kyungmin.park@...sung.com>, Joel Becker <jlbec@...lplan.org>, Marek Szyprowski <m.szyprowski@...sung.com> Subject: [PATCH 7/8] fs/configfs: mount.c checkpatch cleanup Eliminate checkpatch errors and warnings Signed-off-by: Andrzej Pietrasiewicz <andrzej.p@...sung.com> Signed-off-by: Kyungmin Park <kyungmin.park@...sung.com> --- fs/configfs/mount.c | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/fs/configfs/mount.c b/fs/configfs/mount.c index aee0a7e..0815d62 100644 --- a/fs/configfs/mount.c +++ b/fs/configfs/mount.c @@ -19,7 +19,7 @@ * Boston, MA 021110-1307, USA. * * Based on sysfs: - * sysfs is Copyright (C) 2001, 2002, 2003 Patrick Mochel + * sysfs is Copyright (C) 2001, 2002, 2003 Patrick Mochel * * configfs Copyright (C) 2005 Oracle. All rights reserved. */ @@ -37,9 +37,9 @@ /* Random magic number */ #define CONFIGFS_MAGIC 0x62656570 -static struct vfsmount *configfs_mount = NULL; +static struct vfsmount *configfs_mount; struct kmem_cache *configfs_dir_cachep; -static int configfs_mnt_count = 0; +static int configfs_mnt_count; static const struct super_operations configfs_ops = { .statfs = simple_statfs, @@ -82,7 +82,7 @@ static int configfs_fill_super(struct super_block *sb, void *data, int silent) if (inode) { inode->i_op = &configfs_root_inode_operations; inode->i_fop = &configfs_dir_operations; - /* directory inodes start off with i_nlink == 2 (for "." entry) */ + /* directory inodes start off with i_nlink == 2 (for the ".") */ inc_nlink(inode); } else { pr_debug("configfs: could not get root inode\n"); @@ -91,7 +91,7 @@ static int configfs_fill_super(struct super_block *sb, void *data, int silent) root = d_make_root(inode); if (!root) { - pr_debug("%s: could not get root dentry!\n",__func__); + pr_debug("%s: could not get root dentry!\n", __func__); return -ENOMEM; } config_group_init(&configfs_root_group); @@ -154,7 +154,7 @@ static int __init configfs_init(void) return 0; out4: - printk(KERN_ERR "configfs: Unable to register filesystem!\n"); + pr_err("configfs: Unable to register filesystem!\n"); configfs_inode_exit(); out3: kobject_put(config_kobj); -- 1.7.0.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists