[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <4AF86FE3.4090005@anduras.de>
Date: Mon, 09 Nov 2009 20:39:15 +0100
From: Sven Anders <sven@...uras.de>
To: netdev <netdev@...r.kernel.org>
Subject: [PATCH] iproute2: ip route flush bugfix
Hello!
I experienced an error, if I try to perform a
ip route flush proto 4
with many routes in a complex environment, it
gave me the following error:
Failed to send flush request: Success
Flush terminated
I'm using version 2.6.29.
I check GIT, but there was only the "MSG_PEEK" fix.
I tracked it down to the rtnl_send_check() function
in lib/libnetlink.c.
In this function there is the following for loop:
for (h = (struct nlmsghdr *)resp; NLMSG_OK(h, status);
h = NLMSG_NEXT(h, status)) {
if (h->nlmsg_type == NLMSG_ERROR) {
struct nlmsgerr *err = (struct nlmsgerr*)NLMSG_DATA(h);
if (h->nlmsg_len < NLMSG_LENGTH(sizeof(struct nlmsgerr)))
fprintf(stderr, "ERROR truncated\n");
else
errno = -err->error;
}
return -1;
}
I think the "return -1;" should be inside the if statement.
I attached a patch for this. The first part of the patch is taken from
one of the late git commits.
Please note me, if the fix is wrong...
Regards
Sven
PS: This is a repost, because I neither received a confirmation nor a remark, that
the fix is wrong. Moreover the fix didn't make it in the GIT repository yet...
--
Sven Anders <anders@...uras.de> () Ascii Ribbon Campaign
/\ Support plain text e-mail
Weidestraße 19 - 30453 Hannover || Höllgasse 28 - 94032 Passau @ Germany
Web: http://staff2.anduras.de/anders/kim/ - Tel: +49 (0)170 / 80 911 80
View attachment "iproute-2.6.29-flush.patch" of type "text/x-patch" (627 bytes)
View attachment "sven.vcf" of type "text/x-vcard" (296 bytes)
Download attachment "signature.asc" of type "application/pgp-signature" (261 bytes)
Powered by blists - more mailing lists