DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] eal/bsd: silence not supported error in interrupts
@ 2018-07-27  8:24 Anatoly Burakov
  2018-08-01 15:54 ` Thomas Monjalon
  2018-08-03  1:54 ` Zhao, MeijuanX
  0 siblings, 2 replies; 3+ messages in thread
From: Anatoly Burakov @ 2018-07-27  8:24 UTC (permalink / raw)
  To: dev; +Cc: Bruce Richardson, thomas, changqingx.wu

Currently, nic_uio driver does not support interrupts, so any
attempts to install an interrupt handler will fail with a
not supported error, which will 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 <anatoly.burakov@intel.com>
---
 lib/librte_eal/bsdapp/eal/eal_interrupts.c | 14 ++++++++++++--
 1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/lib/librte_eal/bsdapp/eal/eal_interrupts.c b/lib/librte_eal/bsdapp/eal/eal_interrupts.c
index 29356f320..2feee2d52 100644
--- a/lib/librte_eal/bsdapp/eal/eal_interrupts.c
+++ b/lib/librte_eal/bsdapp/eal/eal_interrupts.c
@@ -156,8 +156,18 @@ rte_intr_callback_register(const struct rte_intr_handle *intr_handle,
 		 * add the intr file descriptor into wait list.
 		 */
 		if (kevent(kq, &ke, 1, NULL, 0, NULL) < 0) {
-			RTE_LOG(ERR, EAL, "Error adding fd %d kevent, %s\n",
-				src->intr_handle.fd, strerror(errno));
+			/* currently, nic_uio does not support interrupts, so
+			 * this error will always be triggered and output to the
+			 * user. so, don't output it unless debug log level set.
+			 */
+			if (errno == ENODEV)
+				RTE_LOG(DEBUG, EAL, "Interrupt handle %d not supported\n",
+					src->intr_handle.fd);
+			else
+				RTE_LOG(ERR, EAL, "Error adding fd %d "
+						"kevent, %s\n",
+						src->intr_handle.fd,
+						strerror(errno));
 			ret = -errno;
 			goto fail;
 		}
-- 
2.17.1

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [dpdk-dev] [PATCH] eal/bsd: silence not supported error in interrupts
  2018-07-27  8:24 [dpdk-dev] [PATCH] eal/bsd: silence not supported error in interrupts Anatoly Burakov
@ 2018-08-01 15:54 ` Thomas Monjalon
  2018-08-03  1:54 ` Zhao, MeijuanX
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Monjalon @ 2018-08-01 15:54 UTC (permalink / raw)
  To: Anatoly Burakov; +Cc: dev, Bruce Richardson, changqingx.wu

27/07/2018 10:24, Anatoly Burakov:
> Currently, nic_uio driver does not support interrupts, so any
> attempts to install an interrupt handler will fail with a
> not supported error, which will 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 <anatoly.burakov@intel.com>

Applied, thanks

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [dpdk-dev] [PATCH] eal/bsd: silence not supported error in interrupts
  2018-07-27  8:24 [dpdk-dev] [PATCH] eal/bsd: silence not supported error in interrupts Anatoly Burakov
  2018-08-01 15:54 ` Thomas Monjalon
@ 2018-08-03  1:54 ` Zhao, MeijuanX
  1 sibling, 0 replies; 3+ messages in thread
From: Zhao, MeijuanX @ 2018-08-03  1:54 UTC (permalink / raw)
  To: Burakov, Anatoly, dev; +Cc: Richardson, Bruce, thomas, Wu, ChangqingX



-----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 <bruce.richardson@intel.com>; thomas@monjalon.net; Wu, ChangqingX <changqingx.wu@intel.com>
Subject: [dpdk-dev] [PATCH] eal/bsd: silence not supported error in interrupts

Currently, nic_uio driver does not support interrupts, so any attempts to install an interrupt handler will fail with a not supported error, which will 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 <anatoly.burakov@intel.com>
Tested-by: Wu, ChangqingX <changqingx.wu@intel.com>

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-08-03  1:54 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-07-27  8:24 [dpdk-dev] [PATCH] eal/bsd: silence not supported error in interrupts Anatoly Burakov
2018-08-01 15:54 ` Thomas Monjalon
2018-08-03  1:54 ` Zhao, MeijuanX

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).