[IPV4]: Swap the ifa allocation with the"ipv4_devconf_setall" call

!MAILaRCHIVE_VOTE_RePLACE
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
To: <git-commits-head@...>
Date: Tuesday, December 11, 2007 - 1:59 pm

Gitweb:     http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a4e65d...
Commit:     a4e65d36a959005f14142535b58c44cd0f1de8cb
Parent:     1df2e44560c0d72f381126e52a3ba53614c1c484
Author:     Pavel Emelyanov <xemul@openvz.org>
AuthorDate: Fri Dec 7 23:55:43 2007 -0800
Committer:  David S. Miller <davem@sunset.davemloft.net>
CommitDate: Tue Dec 11 02:45:25 2007 -0800

    [IPV4]: Swap the ifa allocation with the"ipv4_devconf_setall" call
    
    According to Herbert, the ipv4_devconf_setall should be called
    only when the ifa is added to the device. However, failed
    ifa allocation may bring things into inconsistent state.
    
    Move the call to ipv4_devconf_setall after the ifa allocation.
    
    Fits both net-2.6 (with offsets) and net-2.6.25 (cleanly).
    
    Signed-off-by: Pavel Emelyanov <xemul@openvz.org>
    Signed-off-by: David S. Miller <davem@davemloft.net>
---
 net/ipv4/devinet.c |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/net/ipv4/devinet.c b/net/ipv4/devinet.c
index 55d199e..3168c3d 100644
--- a/net/ipv4/devinet.c
+++ b/net/ipv4/devinet.c
@@ -516,8 +516,6 @@ static struct in_ifaddr *rtm_to_ifaddr(struct nlmsghdr *nlh)
 		goto errout;
 	}
 
-	ipv4_devconf_setall(in_dev);
-
 	ifa = inet_alloc_ifa();
 	if (ifa == NULL) {
 		/*
@@ -528,6 +526,7 @@ static struct in_ifaddr *rtm_to_ifaddr(struct nlmsghdr *nlh)
 		goto errout;
 	}
 
+	ipv4_devconf_setall(in_dev);
 	in_dev_hold(in_dev);
 
 	if (tb[IFA_ADDRESS] == NULL)
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[IPV4]: Swap the ifa allocation with the"ipv4_devconf_setall..., Linux Kernel Mailing List..., (Tue Dec 11, 1:59 pm)