Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751337AbbK1IiJ (ORCPT ); Sat, 28 Nov 2015 03:38:09 -0500 Received: from mail-pa0-f52.google.com ([209.85.220.52]:35865 "EHLO mail-pa0-f52.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750845AbbK1IiG (ORCPT ); Sat, 28 Nov 2015 03:38:06 -0500 Date: Sat, 28 Nov 2015 16:38:01 +0800 From: Minfei Huang To: device-mapper development Cc: Alasdair Kergon , Mike Snitzer , Neil Brown , linux-raid@vger.kernel.org, Geliang Tang , linux-kernel@vger.kernel.org Subject: Re: [dm-devel] [PATCH] dm-ioctl: fix 4-characters indentations Message-ID: <20151128083801.GA16777@dhcp-129-10.nay.redhat.com> References: <1f27d82f27c62841bcb9858f90ad27fd0dce78e3.1448455317.git.geliangtang@163.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1f27d82f27c62841bcb9858f90ad27fd0dce78e3.1448455317.git.geliangtang@163.com> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3417 Lines: 112 Hi. IMHO, this sort of defect shouldn't be fixed like this. It should be fixed with other bugs, if necessary. Once this patch is applied, it will break up the 'git blame'. Thanks Minfei On 11/25/15 at 08:45pm, Geliang Tang wrote: > Change 4-characters indentations to 8-characters. > > Signed-off-by: Geliang Tang > --- > drivers/md/dm-ioctl.c | 58 +++++++++++++++++++++++++-------------------------- > 1 file changed, 29 insertions(+), 29 deletions(-) > > diff --git a/drivers/md/dm-ioctl.c b/drivers/md/dm-ioctl.c > index 80a4395..39aae6b 100644 > --- a/drivers/md/dm-ioctl.c > +++ b/drivers/md/dm-ioctl.c > @@ -45,10 +45,10 @@ struct dm_table { > }; > > struct vers_iter { > - size_t param_size; > - struct dm_target_versions *vers, *old_vers; > - char *end; > - uint32_t flags; > + size_t param_size; > + struct dm_target_versions *vers, *old_vers; > + char *end; > + uint32_t flags; > }; > > > @@ -557,36 +557,36 @@ static int list_devices(struct dm_ioctl *param, size_t param_size) > > static void list_version_get_needed(struct target_type *tt, void *needed_param) > { > - size_t *needed = needed_param; > + size_t *needed = needed_param; > > - *needed += sizeof(struct dm_target_versions); > - *needed += strlen(tt->name); > - *needed += ALIGN_MASK; > + *needed += sizeof(struct dm_target_versions); > + *needed += strlen(tt->name); > + *needed += ALIGN_MASK; > } > > static void list_version_get_info(struct target_type *tt, void *param) > { > - struct vers_iter *info = param; > - > - /* Check space - it might have changed since the first iteration */ > - if ((char *)info->vers + sizeof(tt->version) + strlen(tt->name) + 1 > > - info->end) { > - > - info->flags = DM_BUFFER_FULL_FLAG; > - return; > - } > - > - if (info->old_vers) > - info->old_vers->next = (uint32_t) ((void *)info->vers - > - (void *)info->old_vers); > - info->vers->version[0] = tt->version[0]; > - info->vers->version[1] = tt->version[1]; > - info->vers->version[2] = tt->version[2]; > - info->vers->next = 0; > - strcpy(info->vers->name, tt->name); > - > - info->old_vers = info->vers; > - info->vers = align_ptr(((void *) ++info->vers) + strlen(tt->name) + 1); > + struct vers_iter *info = param; > + > + /* Check space - it might have changed since the first iteration */ > + if ((char *)info->vers + sizeof(tt->version) + strlen(tt->name) + 1 > > + info->end) { > + > + info->flags = DM_BUFFER_FULL_FLAG; > + return; > + } > + > + if (info->old_vers) > + info->old_vers->next = (uint32_t) ((void *)info->vers - > + (void *)info->old_vers); > + info->vers->version[0] = tt->version[0]; > + info->vers->version[1] = tt->version[1]; > + info->vers->version[2] = tt->version[2]; > + info->vers->next = 0; > + strcpy(info->vers->name, tt->name); > + > + info->old_vers = info->vers; > + info->vers = align_ptr(((void *) ++info->vers) + strlen(tt->name) + 1); > } > > static int list_versions(struct dm_ioctl *param, size_t param_size) > -- > 2.5.0 > > > -- > dm-devel mailing list > dm-devel@redhat.com > https://www.redhat.com/mailman/listinfo/dm-devel -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/