From mboxrd@z Thu Jan 1 00:00:00 1970 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) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 1716920CB2; Tue, 7 Nov 2017 18:45:43 -0500 (EST) Received: from frontend1 ([10.202.2.160]) by compute1.internal (MEProxy); Tue, 07 Nov 2017 18:45:43 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc; s=mesmtp; bh=ayWrhtYtig8wbF7iX3Ki0Juxkm dnHvbBK6HpoS9Ajzs=; b=G9igw++avlmV5YoKlizgzRYAfFMd1allvrum8lnbKy V+9itQmqpMKHovD7LSllVSGPhWXigJ7/lBRDZIsvdE1gYICe1kMgfttaGOhZmXuO M3S0cYmSG8LgWHVMX3goGK3DpcezUPeRzE5EY0mRIJlZpCCPu3hP9Mfd5KwuLGy7 Y= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=ayWrht Ytig8wbF7iX3Ki0JuxkmdnHvbBK6HpoS9Ajzs=; b=ltBpOQhJgFzd5RUGGB+yei GLg9/tMktpoMryv+6gvceaKbN0dVeUYoCC+boVSnEAbbvzKzXMuUQhq3HjjNURNh suryp+M70w7tV09ApMTmbLpTwF/Ad87pcWwhTDvxjG3CaPsQpL1nv38AcKRYrLwL zTnmfvkW8xeeQSNiDjCaMZ3kXybL/cnS6TcrVZAF6ziiK2xnkfWubYrqJClPYCDG Kp7BB8YS6LEA4GPyT/KXQ6WsV7q67tNYQ4cJFvYvyO7Rn9Qb0Q7/Z4AQRHcIQdkE FEmeHm4LXN0MzRQrigCszyBBk72TSvzTi9srkWFPdzGifD4RIV6GMxYdahAQBIBw == X-ME-Sender: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id CE0327FAD4; Tue, 7 Nov 2017 18:45:42 -0500 (EST) From: Thomas Monjalon To: Ferruh Yigit Cc: dev@dpdk.org, John McNamara Date: Wed, 08 Nov 2017 00:45:41 +0100 Message-ID: <2727444.BxQRkExc9S@xps> In-Reply-To: <90f53ade-59d0-378d-bdd5-1d82bb6db733@intel.com> References: <20170428163420.25785-1-ferruh.yigit@intel.com> <3010398.kuAIiaT0df@xps> <90f53ade-59d0-378d-bdd5-1d82bb6db733@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v2] devtools: add script to get maintainers from patch X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Nov 2017 23:45:43 -0000 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 > >> +} > >