From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 8E9BAA0C56; Wed, 1 Sep 2021 21:04:42 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 197F840DDE; Wed, 1 Sep 2021 21:04:42 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [216.205.24.124]) by mails.dpdk.org (Postfix) with ESMTP id 06ECF4067E for ; Wed, 1 Sep 2021 21:04:40 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1630523080; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=61oJkEBwaH7jpwvzEmB0NF6hJPSwGKSpVz0TuuPH6E4=; b=gL7/nY88z/dGnPozeO0xWMu7iAsi6jPEYNW8JnViEbn/ksClqMnT9bnmCeT7bNYRQbs2dS uxsw+At8PC7ieZpIwUN30fWx7Ma74LURXl3Zg99cH5bepeITw2aBcEStWId+OY3/bjJK+a QaFqdLUDH6MHuYl4i3pGpxZynx+TM04= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-397-SKg4-OwQNuu5f56r9gXr2Q-1; Wed, 01 Sep 2021 15:04:39 -0400 X-MC-Unique: SKg4-OwQNuu5f56r9gXr2Q-1 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 9E90E801A92; Wed, 1 Sep 2021 19:04:36 +0000 (UTC) Received: from RHTPC1VM0NT (unknown [10.22.17.187]) by smtp.corp.redhat.com (Postfix) with ESMTPS id E98477621A; Wed, 1 Sep 2021 19:04:34 +0000 (UTC) From: Aaron Conole To: Stephen Hemminger Cc: Ray Kinsella , dev@dpdk.org, bruce.richardson@intel.com, ferruh.yigit@intel.com, thomas@monjalon.net, ktraynor@redhat.com References: <20210618163659.85933-1-mdr@ashroe.eu> <20210831145017.856776-1-mdr@ashroe.eu> <20210901101757.41e83aa7@hermes.local> Date: Wed, 01 Sep 2021 15:04:33 -0400 In-Reply-To: <20210901101757.41e83aa7@hermes.local> (Stephen Hemminger's message of "Wed, 1 Sep 2021 10:17:57 -0700") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=aconole@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain Subject: Re: [dpdk-dev] [PATCH v10 0/3] devtools: scripts to count and track symbols X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Stephen Hemminger writes: > On Wed, 01 Sep 2021 08:31:27 -0400 > Aaron Conole wrote: > >> $ flake8 ./usertools/dpdk-devbind.py | sed 's@./usertools/dpdk-devbind.py[:0-9]* @@' | sort -u >> E128 continuation line under-indented for visual indent >> E302 expected 2 blank lines, found 1 >> E305 expected 2 blank lines after class or function definition, found 1 >> E501 line too long (105 > 79 characters) >> E501 line too long (80 > 79 characters) >> E501 line too long (82 > 79 characters) >> E501 line too long (83 > 79 characters) >> E501 line too long (84 > 79 characters) >> E501 line too long (85 > 79 characters) >> E501 line too long (86 > 79 characters) >> E501 line too long (91 > 79 characters) > > Current practice on many projects has allowed lines up to 100 characters. It is probably okay to run with '--ignore=E501' (which will squelch the character limit).