Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751250AbdH3Try (ORCPT ); Wed, 30 Aug 2017 15:47:54 -0400 Received: from mail-ua0-f195.google.com ([209.85.217.195]:38217 "EHLO mail-ua0-f195.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750756AbdH3Trw (ORCPT ); Wed, 30 Aug 2017 15:47:52 -0400 X-Google-Smtp-Source: ADKCNb4i9GdCmXCtifscrd2fLFUq2eNoxk/6Shw+44iN3mk0Rl62klzW9W/xR5mF3LpqEaEqLDd3BMoM9Ny8/eUmK1U= MIME-Version: 1.0 In-Reply-To: <934e298f-596d-dc13-f3e3-797a49c74e84@users.sourceforge.net> References: <7ab4be89-4aa6-5537-9839-da090635f249@users.sourceforge.net> <1cb8956d-2862-9f64-d19c-32b4a797a3b1@users.sourceforge.net> <20170825205721.GA11181@hades.home> <934e298f-596d-dc13-f3e3-797a49c74e84@users.sourceforge.net> From: Martyn Welch Date: Wed, 30 Aug 2017 20:47:51 +0100 X-Google-Sender-Auth: 5DpnOtQ_8L01RRnr-GkpTKPaqaA Message-ID: Subject: Re: [PATCH 13/14] vme: tsi148: Improve 17 size determinations To: SF Markus Elfring Cc: devel , Aaron Sierra , Alessio Igor Bogani , Arnd Bergmann , Augusto Mecking Caringi , Baoyou Xie , Greg Kroah-Hartman , Manohar Vanga , LKML , kernel-janitors@vger.kernel.org Content-Type: text/plain; charset="UTF-8" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1506 Lines: 49 On 26 August 2017 at 08:00, SF Markus Elfring wrote: >>> @@ -2363,5 +2364,5 @@ static int tsi148_probe(struct pci_dev *pdev, const struct pci_device_id *id) >>> master_num--; >>> >>> tsi148_device->flush_image = >>> - kmalloc(sizeof(struct vme_master_resource), GFP_KERNEL); >>> + kmalloc(sizeof(*tsi148_device->flush_image), GFP_KERNEL); >> >> This line is now a tiny bit too long > > Can you eventually tolerate a line length of 81 characters at such a source code place? > I think there's some irony here. On the one hand you are submitting patches that correct coding style issues, on the other you are asking whether we can ignore the coding style... > >> and needs to be broken over two lines. > > How would like to achieve this? > > * It seems that you would not like to perform such a tweak yourself. > To be honest, it is quicker and easier in this instance to do just that. So that's now done. Patches now in my testing branch: https://gitlab.collabora.com/martyn/linux/commits/vme-testing For future reference: > * Do you expect a resend for the complete patch series? > Unless the maintainer has commented that they have accepted patches x, y and z, then sending the entire series again is generally the right thing to do. > * Will it be sufficient to send another patch only for the requested reformatting > of a single line? > No, unless the patches have been accepted as-is. Martyn