From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: Re: [PATCH v2] devtools: add script to get maintainers from patch Date: Wed, 08 Nov 2017 00:45:41 +0100 Message-ID: <2727444.BxQRkExc9S@xps> References: <20170428163420.25785-1-ferruh.yigit@intel.com> <3010398.kuAIiaT0df@xps> <90f53ade-59d0-378d-bdd5-1d82bb6db733@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Cc: dev@dpdk.org, John McNamara To: Ferruh Yigit Return-path: Received: from out4-smtp.messagingengine.com (out4-smtp.messagingengine.com [66.111.4.28]) by dpdk.org (Postfix) with ESMTP id 677D41B3DB for ; Wed, 8 Nov 2017 00:45:43 +0100 (CET) In-Reply-To: <90f53ade-59d0-378d-bdd5-1d82bb6db733@intel.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 08/11/2017 00:41, Ferruh Yigit: > On 11/7/2017 3:35 PM, Thomas Monjalon wrote: > > Have you tried to send a patch to Linux > > in order to avoid the workaround below? > > No, not tried, but that list looks like put intentionally so not sure if a patch > helps. checkpatch has an option to be run outside of Linux. > >> +FILES="COPYING CREDITS Kbuild" > >> +FOLDERS="Documentation arch include fs init ipc kernel scripts" > >> + > >> +# Kernel script checks for some files and folders to run > >> +workaround () { > >> + for f in $FILES; do > >> + if [ ! -f $f ]; then touch $f; fi > >> + done > >> + > >> + for d in $FOLDERS; do > >> + if [ ! -d $d ]; then mkdir $d; fi > >> + done > >> +} > >