From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756143AbcCWRQs (ORCPT ); Wed, 23 Mar 2016 13:16:48 -0400 Received: from mail-wm0-f51.google.com ([74.125.82.51]:38365 "EHLO mail-wm0-f51.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752170AbcCWRQq (ORCPT ); Wed, 23 Mar 2016 13:16:46 -0400 Subject: Re: [PATCH] net: Fix typos and whitespace. To: Bjorn Helgaas , Bjorn Helgaas References: <20160323134530.18742.35082.stgit@bhelgaas-glaptop2.roam.corp.google.com> <20160323135535.GA18845@localhost> Cc: "David S. Miller" , netdev@vger.kernel.org, linux-kernel@vger.kernel.org From: Vlad Zolotarov Message-ID: <56F2CF7A.9070104@cloudius-systems.com> Date: Wed, 23 Mar 2016 19:16:42 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.6.0 MIME-Version: 1.0 In-Reply-To: <20160323135535.GA18845@localhost> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 03/23/2016 03:55 PM, Bjorn Helgaas wrote: > [+cc Vlad] > > On Wed, Mar 23, 2016 at 08:45:30AM -0500, Bjorn Helgaas wrote: >> Fix typos. Capitalize CPU, NAPI, RCU consistently. Align structure >> indentation. No functional change intended; only comment and whitespace >> changes. >> >> Signed-off-by: Bjorn Helgaas >> --- >> include/linux/netdevice.h | 215 ++++++++++++++++++++++----------------------- >> @@ -920,7 +920,7 @@ struct tc_to_netdev { >> * >> * Enable or disable the VF ability to query its RSS Redirection Table and >> * Hash Key. This is needed since on some devices VF share this information >> - * with PF and querying it may adduce a theoretical security risk. >> + * with PF and querying it may introduce a theoretical security risk. >> * int (*ndo_set_vf_rss_query_en)(struct net_device *dev, int vf, bool setting) > Most of these are obvious typo fixes, but I want to point out this one > in particular because "adduce" is a real word. It's possible that's > what Vlad intended in 01a3d796813d ("if_link: Add an additional > parameter to ifla_vf_info for RSS querying"), though it doesn't quite > seem to fit. Vlad, if you did intend "adduce", my apologies in > advance. Of course it was a typo :D Thanks for fixing it, Bjorn. > > Bjorn