From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 8F8541B518 for ; Fri, 3 Aug 2018 03:54:27 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga008.jf.intel.com ([10.7.209.65]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 02 Aug 2018 18:54:26 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.51,437,1526367600"; d="scan'208";a="61991883" Received: from fmsmsx106.amr.corp.intel.com ([10.18.124.204]) by orsmga008.jf.intel.com with ESMTP; 02 Aug 2018 18:54:14 -0700 Received: from fmsmsx157.amr.corp.intel.com (10.18.116.73) by FMSMSX106.amr.corp.intel.com (10.18.124.204) with Microsoft SMTP Server (TLS) id 14.3.319.2; Thu, 2 Aug 2018 18:54:14 -0700 Received: from shsmsx152.ccr.corp.intel.com (10.239.6.52) by FMSMSX157.amr.corp.intel.com (10.18.116.73) with Microsoft SMTP Server (TLS) id 14.3.319.2; Thu, 2 Aug 2018 18:54:13 -0700 Received: from shsmsx102.ccr.corp.intel.com ([169.254.2.124]) by SHSMSX152.ccr.corp.intel.com ([169.254.6.173]) with mapi id 14.03.0319.002; Fri, 3 Aug 2018 09:54:12 +0800 From: "Zhao, MeijuanX" To: "Burakov, Anatoly" , "dev@dpdk.org" CC: "Richardson, Bruce" , "thomas@monjalon.net" , "Wu, ChangqingX" Thread-Topic: [dpdk-dev] [PATCH] eal/bsd: silence not supported error in interrupts Thread-Index: AQHUJYNnZwm5oW+D9k2q4DubjNpgbaStTZCQ Date: Fri, 3 Aug 2018 01:54:12 +0000 Message-ID: <9866F1E5CE768A45B24F6603C6EF54DE01414C2B@shsmsx102.ccr.corp.intel.com> References: <7679658279b52ae069260b62696398a97648eb6a.1532679585.git.anatoly.burakov@intel.com> In-Reply-To: <7679658279b52ae069260b62696398a97648eb6a.1532679585.git.anatoly.burakov@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH] eal/bsd: silence not supported error in interrupts 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: Fri, 03 Aug 2018 01:54:28 -0000 -----Original Message----- From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Anatoly Burakov Sent: Friday, July 27, 2018 4:25 PM To: dev@dpdk.org Cc: Richardson, Bruce ; thomas@monjalon.net; Wu= , ChangqingX Subject: [dpdk-dev] [PATCH] eal/bsd: silence not supported error in interru= pts Currently, nic_uio driver does not support interrupts, so any attempts to i= nstall an interrupt handler will fail with a not supported error, which wil= l cause an error message that is confusing to the user. Silence this error by moving it to debug log level, and reword the message = to avoid containing the word "Error", to avoid triggering DTS test failures= [1]. [1] https://git.dpdk.org/tools/dts/tree/tests/ TestSuite_scatter.py?#n110 Fixes: 23150bd8d8a8 ("eal/bsd: add interrupt thread") Signed-off-by: Anatoly Burakov Tested-by: Wu, ChangqingX