* [dpdk-dev] [PATCH] net/af_packet: append system error to error msgs
@ 2019-07-04 14:39 kkanas
2019-07-04 18:59 ` Ferruh Yigit
0 siblings, 1 reply; 4+ messages in thread
From: kkanas @ 2019-07-04 14:39 UTC (permalink / raw)
To: dev, ferruh.yigit, John W. Linville; +Cc: Krzysztof Kanas
From: Krzysztof Kanas <kkanas@marvell.com>
Print system error to make easier diagnosis of errors with af_packet.
Signed-off-by: Krzysztof Kanas <kkanas@marvell.com>
---
drivers/net/af_packet/rte_eth_af_packet.c | 47 ++++++++++++-----------
1 file changed, 24 insertions(+), 23 deletions(-)
diff --git a/drivers/net/af_packet/rte_eth_af_packet.c b/drivers/net/af_packet/rte_eth_af_packet.c
index f396f8b22a55..94ae4b13398d 100644
--- a/drivers/net/af_packet/rte_eth_af_packet.c
+++ b/drivers/net/af_packet/rte_eth_af_packet.c
@@ -13,7 +13,9 @@
#include <rte_malloc.h>
#include <rte_kvargs.h>
#include <rte_bus_vdev.h>
+#include <rte_errno.h>
+#include <errno.h>
#include <linux/if_ether.h>
#include <linux/if_packet.h>
#include <arpa/inet.h>
@@ -605,8 +607,8 @@ rte_pmd_init_internals(struct rte_vdev_device *dev,
}
if (ioctl(sockfd, SIOCGIFINDEX, &ifr) == -1) {
PMD_LOG(ERR,
- "%s: ioctl failed (SIOCGIFINDEX)",
- name);
+ "%s: ioctl failed (SIOCGIFINDEX):%s",
+ name, rte_strerror(errno));
return -1;
}
(*internals)->if_name = strdup(pair->value);
@@ -616,8 +618,8 @@ rte_pmd_init_internals(struct rte_vdev_device *dev,
if (ioctl(sockfd, SIOCGIFHWADDR, &ifr) == -1) {
PMD_LOG(ERR,
- "%s: ioctl failed (SIOCGIFHWADDR)",
- name);
+ "%s: ioctl failed (SIOCGIFHWADDR):%s",
+ name, rte_strerror(errno));
return -1;
}
memcpy(&(*internals)->eth_addr, ifr.ifr_hwaddr.sa_data, ETH_ALEN);
@@ -640,8 +642,8 @@ rte_pmd_init_internals(struct rte_vdev_device *dev,
qsockfd = socket(AF_PACKET, SOCK_RAW, htons(ETH_P_ALL));
if (qsockfd == -1) {
PMD_LOG(ERR,
- "%s: could not open AF_PACKET socket",
- name);
+ "%s: could not open AF_PACKET socket: %s",
+ name, rte_strerror(errno));
return -1;
}
@@ -650,8 +652,8 @@ rte_pmd_init_internals(struct rte_vdev_device *dev,
&tpver, sizeof(tpver));
if (rc == -1) {
PMD_LOG(ERR,
- "%s: could not set PACKET_VERSION on AF_PACKET socket for %s",
- name, pair->value);
+ "%s: could not set PACKET_VERSION on AF_PACKET socket for %s:%s",
+ name, pair->value, rte_strerror(errno));
goto error;
}
@@ -660,8 +662,8 @@ rte_pmd_init_internals(struct rte_vdev_device *dev,
&discard, sizeof(discard));
if (rc == -1) {
PMD_LOG(ERR,
- "%s: could not set PACKET_LOSS on AF_PACKET socket for %s",
- name, pair->value);
+ "%s: could not set PACKET_LOSS on AF_PACKET socket for %s:%s",
+ name, pair->value, rte_strerror(errno));
goto error;
}
@@ -670,8 +672,8 @@ rte_pmd_init_internals(struct rte_vdev_device *dev,
&qdisc_bypass, sizeof(qdisc_bypass));
if (rc == -1) {
PMD_LOG(ERR,
- "%s: could not set PACKET_QDISC_BYPASS on AF_PACKET socket for %s",
- name, pair->value);
+ "%s: could not set PACKET_QDISC_BYPASS on AF_PACKET socket for %s:%s",
+ name, pair->value, rte_strerror(errno));
goto error;
}
#else
@@ -681,8 +683,8 @@ rte_pmd_init_internals(struct rte_vdev_device *dev,
rc = setsockopt(qsockfd, SOL_PACKET, PACKET_RX_RING, req, sizeof(*req));
if (rc == -1) {
PMD_LOG(ERR,
- "%s: could not set PACKET_RX_RING on AF_PACKET socket for %s",
- name, pair->value);
+ "%s: could not set PACKET_RX_RING on AF_PACKE socket for %s:%s",
+ name, pair->value, rte_strerror(errno));
goto error;
}
@@ -690,7 +692,8 @@ rte_pmd_init_internals(struct rte_vdev_device *dev,
if (rc == -1) {
PMD_LOG(ERR,
"%s: could not set PACKET_TX_RING on AF_PACKET "
- "socket for %s", name, pair->value);
+ "socket for %s:%s", name, pair->value,
+ rte_strerror(errno));
goto error;
}
@@ -702,8 +705,8 @@ rte_pmd_init_internals(struct rte_vdev_device *dev,
qsockfd, 0);
if (rx_queue->map == MAP_FAILED) {
PMD_LOG(ERR,
- "%s: call to mmap failed on AF_PACKET socket for %s",
- name, pair->value);
+ "%s: call to mmap failed on AF_PACKET socket for %s:%s",
+ name, pair->value, rte_strerror(errno));
goto error;
}
@@ -738,9 +741,8 @@ rte_pmd_init_internals(struct rte_vdev_device *dev,
rc = bind(qsockfd, (const struct sockaddr*)&sockaddr, sizeof(sockaddr));
if (rc == -1) {
- PMD_LOG(ERR,
- "%s: could not bind AF_PACKET socket to %s",
- name, pair->value);
+ PMD_LOG(ERR, "%s: could not bind AF_PACKET socket to %s:%s",
+ name, pair->value, rte_strerror(errno));
goto error;
}
@@ -748,9 +750,8 @@ rte_pmd_init_internals(struct rte_vdev_device *dev,
rc = setsockopt(qsockfd, SOL_PACKET, PACKET_FANOUT,
&fanout_arg, sizeof(fanout_arg));
if (rc == -1) {
- PMD_LOG(ERR,
- "%s: could not set PACKET_FANOUT on AF_PACKET socket "
- "for %s", name, pair->value);
+ PMD_LOG(ERR, "%s: could not set PACKET_FANOUT on AF_PACKET socket for %s:%s",
+ name, pair->value, rte_strerror(errno));
goto error;
}
#endif
--
2.21.0
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dpdk-dev] [PATCH] net/af_packet: append system error to error msgs
2019-07-04 14:39 [dpdk-dev] [PATCH] net/af_packet: append system error to error msgs kkanas
@ 2019-07-04 18:59 ` Ferruh Yigit
2019-07-05 9:35 ` [dpdk-dev] [EXT] " Krzysztof Kanas
0 siblings, 1 reply; 4+ messages in thread
From: Ferruh Yigit @ 2019-07-04 18:59 UTC (permalink / raw)
To: kkanas, dev, John W. Linville
On 7/4/2019 3:39 PM, kkanas@marvell.com wrote:
> From: Krzysztof Kanas <kkanas@marvell.com>
>
> Print system error to make easier diagnosis of errors with af_packet.
>
> Signed-off-by: Krzysztof Kanas <kkanas@marvell.com>
> ---
> drivers/net/af_packet/rte_eth_af_packet.c | 47 ++++++++++++-----------
> 1 file changed, 24 insertions(+), 23 deletions(-)
>
> diff --git a/drivers/net/af_packet/rte_eth_af_packet.c b/drivers/net/af_packet/rte_eth_af_packet.c
> index f396f8b22a55..94ae4b13398d 100644
> --- a/drivers/net/af_packet/rte_eth_af_packet.c
> +++ b/drivers/net/af_packet/rte_eth_af_packet.c
> @@ -13,7 +13,9 @@
> #include <rte_malloc.h>
> #include <rte_kvargs.h>
> #include <rte_bus_vdev.h>
> +#include <rte_errno.h>
>
> +#include <errno.h>
> #include <linux/if_ether.h>
> #include <linux/if_packet.h>
> #include <arpa/inet.h>
> @@ -605,8 +607,8 @@ rte_pmd_init_internals(struct rte_vdev_device *dev,
> }
> if (ioctl(sockfd, SIOCGIFINDEX, &ifr) == -1) {
> PMD_LOG(ERR,
> - "%s: ioctl failed (SIOCGIFINDEX)",
> - name);
> + "%s: ioctl failed (SIOCGIFINDEX):%s",
> + name, rte_strerror(errno));
What do you think adding an new macro that adds ":%s, rte_strerror(errno)" part
automatically and just change the macro on selected logs?
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dpdk-dev] [EXT] Re: [PATCH] net/af_packet: append system error to error msgs
2019-07-04 18:59 ` Ferruh Yigit
@ 2019-07-05 9:35 ` Krzysztof Kanas
2019-07-08 18:04 ` Ferruh Yigit
0 siblings, 1 reply; 4+ messages in thread
From: Krzysztof Kanas @ 2019-07-05 9:35 UTC (permalink / raw)
To: Ferruh Yigit; +Cc: Krzysztof Kanas, dev, John W. Linville
On 19-07-04 19:59, Ferruh Yigit wrote:
> External Email
>
> ----------------------------------------------------------------------
> On 7/4/2019 3:39 PM, kkanas@marvell.com wrote:
> > From: Krzysztof Kanas <kkanas@marvell.com>
> >
> > Print system error to make easier diagnosis of errors with af_packet.
> >
> > Signed-off-by: Krzysztof Kanas <kkanas@marvell.com>
> > ---
> > drivers/net/af_packet/rte_eth_af_packet.c | 47 ++++++++++++-----------
> > 1 file changed, 24 insertions(+), 23 deletions(-)
> >
> > diff --git a/drivers/net/af_packet/rte_eth_af_packet.c b/drivers/net/af_packet/rte_eth_af_packet.c
> > index f396f8b22a55..94ae4b13398d 100644
> > --- a/drivers/net/af_packet/rte_eth_af_packet.c
> > +++ b/drivers/net/af_packet/rte_eth_af_packet.c
> > @@ -13,7 +13,9 @@
> > #include <rte_malloc.h>
> > #include <rte_kvargs.h>
> > #include <rte_bus_vdev.h>
> > +#include <rte_errno.h>
> >
> > +#include <errno.h>
> > #include <linux/if_ether.h>
> > #include <linux/if_packet.h>
> > #include <arpa/inet.h>
> > @@ -605,8 +607,8 @@ rte_pmd_init_internals(struct rte_vdev_device *dev,
> > }
> > if (ioctl(sockfd, SIOCGIFINDEX, &ifr) == -1) {
> > PMD_LOG(ERR,
> > - "%s: ioctl failed (SIOCGIFINDEX)",
> > - name);
> > + "%s: ioctl failed (SIOCGIFINDEX):%s",
> > + name, rte_strerror(errno));
>
> What do you think adding an new macro that adds ":%s, rte_strerror(errno)" part
> automatically and just change the macro on selected logs?
>
I would rather not, as adding macro adds another indirection, and the
purpose of rte_strerror(errno) was just to help debugging wrong
arguments etc..
Also if in macro somebody uses function that changes errno, the
rte_strerror would give bad result.
But no strong opinion on above.
--
-
Regards,
Krzysztof(Chris) Kanas
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dpdk-dev] [EXT] Re: [PATCH] net/af_packet: append system error to error msgs
2019-07-05 9:35 ` [dpdk-dev] [EXT] " Krzysztof Kanas
@ 2019-07-08 18:04 ` Ferruh Yigit
0 siblings, 0 replies; 4+ messages in thread
From: Ferruh Yigit @ 2019-07-08 18:04 UTC (permalink / raw)
To: Krzysztof Kanas; +Cc: dev, John W. Linville
On 7/5/2019 10:35 AM, Krzysztof Kanas wrote:
> On 19-07-04 19:59, Ferruh Yigit wrote:
>> External Email
>>
>> ----------------------------------------------------------------------
>> On 7/4/2019 3:39 PM, kkanas@marvell.com wrote:
>>> From: Krzysztof Kanas <kkanas@marvell.com>
>>>
>>> Print system error to make easier diagnosis of errors with af_packet.
>>>
>>> Signed-off-by: Krzysztof Kanas <kkanas@marvell.com>
>>> ---
>>> drivers/net/af_packet/rte_eth_af_packet.c | 47 ++++++++++++-----------
>>> 1 file changed, 24 insertions(+), 23 deletions(-)
>>>
>>> diff --git a/drivers/net/af_packet/rte_eth_af_packet.c b/drivers/net/af_packet/rte_eth_af_packet.c
>>> index f396f8b22a55..94ae4b13398d 100644
>>> --- a/drivers/net/af_packet/rte_eth_af_packet.c
>>> +++ b/drivers/net/af_packet/rte_eth_af_packet.c
>>> @@ -13,7 +13,9 @@
>>> #include <rte_malloc.h>
>>> #include <rte_kvargs.h>
>>> #include <rte_bus_vdev.h>
>>> +#include <rte_errno.h>
>>>
>>> +#include <errno.h>
>>> #include <linux/if_ether.h>
>>> #include <linux/if_packet.h>
>>> #include <arpa/inet.h>
>>> @@ -605,8 +607,8 @@ rte_pmd_init_internals(struct rte_vdev_device *dev,
>>> }
>>> if (ioctl(sockfd, SIOCGIFINDEX, &ifr) == -1) {
>>> PMD_LOG(ERR,
>>> - "%s: ioctl failed (SIOCGIFINDEX)",
>>> - name);
>>> + "%s: ioctl failed (SIOCGIFINDEX):%s",
>>> + name, rte_strerror(errno));
>>
>> What do you think adding an new macro that adds ":%s, rte_strerror(errno)" part
>> automatically and just change the macro on selected logs?
>>
> I would rather not, as adding macro adds another indirection, and the
> purpose of rte_strerror(errno) was just to help debugging wrong
> arguments etc..
>
> Also if in macro somebody uses function that changes errno, the
> rte_strerror would give bad result.
I am just talking about something like "PMD_LOG_ERRNO" which appends
"rte_strerror(errno)" additional to "PMD_LOG", so there is no additional
indirection or there is nothing that can change "errno", so still doesn't make
sense?
>
> But no strong opinion on above.
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2019-07-08 18:04 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-04 14:39 [dpdk-dev] [PATCH] net/af_packet: append system error to error msgs kkanas
2019-07-04 18:59 ` Ferruh Yigit
2019-07-05 9:35 ` [dpdk-dev] [EXT] " Krzysztof Kanas
2019-07-08 18:04 ` Ferruh Yigit
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).