Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

quota: remove trailing whitespaces

This removes all trailing whitespaces in fs/quota/.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Signed-off-by: Jan Kara <jack@suse.cz>

authored by

Sascha Hauer and committed by
Jan Kara
27942ef5 df15a2a5

+7 -7
+5 -5
fs/quota/dquot.c
··· 9 9 * on the Melbourne quota system as used on BSD derived systems. The internal 10 10 * implementation is based on one of the several variants of the LINUX 11 11 * inode-subsystem with added complexity of the diskquota system. 12 - * 12 + * 13 13 * Author: Marco van Wieringen <mvw@planets.elm.net> 14 14 * 15 15 * Fixes: Dmitry Gorodchanin <pgmdsg@ibi.com>, 11 Feb 96 ··· 51 51 * Added journalled quota support, fix lock inversion problems 52 52 * Jan Kara, <jack@suse.cz>, 2003,2004 53 53 * 54 - * (C) Copyright 1994 - 1997 Marco van Wieringen 54 + * (C) Copyright 1994 - 1997 Marco van Wieringen 55 55 */ 56 56 57 57 #include <linux/errno.h> ··· 197 197 int qm; 198 198 199 199 spin_unlock(&dq_list_lock); 200 - 200 + 201 201 for (qm = 0; module_names[qm].qm_fmt_id && 202 202 module_names[qm].qm_fmt_id != id; qm++) 203 203 ; ··· 2397 2397 out_fmt: 2398 2398 put_quota_format(fmt); 2399 2399 2400 - return error; 2400 + return error; 2401 2401 } 2402 2402 2403 2403 /* Reenable quotas on remount RW */ ··· 2775 2775 struct qc_type_state *tstate; 2776 2776 struct quota_info *dqopt = sb_dqopt(sb); 2777 2777 int type; 2778 - 2778 + 2779 2779 memset(state, 0, sizeof(*state)); 2780 2780 for (type = 0; type < MAXQUOTAS; type++) { 2781 2781 if (!sb_has_quota_active(sb, type))
+1 -1
fs/quota/quota_v1.c
··· 127 127 { 128 128 struct inode *inode = sb_dqopt(sb)->files[type]; 129 129 ulong blocks; 130 - size_t off; 130 + size_t off; 131 131 struct v2_disk_dqheader dqhead; 132 132 ssize_t size; 133 133 loff_t isize;
+1 -1
fs/quota/quota_v2.c
··· 78 78 struct v2_disk_dqheader dqhead; 79 79 static const uint quota_magics[] = V2_INITQMAGICS; 80 80 static const uint quota_versions[] = V2_INITQVERSIONS; 81 - 81 + 82 82 if (v2_read_header(sb, type, &dqhead)) 83 83 return 0; 84 84 if (le32_to_cpu(dqhead.dqh_magic) != quota_magics[type] ||