X-Git-Url: https://git.whamcloud.com/?a=blobdiff_plain;ds=sidebyside;f=lnet%2Flnet%2Fconfig.c;h=15f80bddfe80915d2275aae66d5a7ba5ecabe715;hb=1d80e9debf992a41b2caf285964fa7af4b1c1246;hp=240a27d3ec630901d27e9b9758d6142c451f1f15;hpb=2be10428ac22426c5868b699b6c0b80c040465dc;p=fs%2Flustre-release.git diff --git a/lnet/lnet/config.c b/lnet/lnet/config.c index 240a27d..15f80bd 100644 --- a/lnet/lnet/config.c +++ b/lnet/lnet/config.c @@ -33,6 +33,7 @@ #define DEBUG_SUBSYSTEM S_LNET #include +#include #include #include #include @@ -376,8 +377,10 @@ lnet_net_alloc(__u32 net_id, struct list_head *net_list) INIT_LIST_HEAD(&net->net_ni_list); INIT_LIST_HEAD(&net->net_ni_added); INIT_LIST_HEAD(&net->net_ni_zombie); + spin_lock_init(&net->net_lock); net->net_id = net_id; + net->net_last_alive = ktime_get_real_seconds(); net->net_state = LNET_NET_STATE_INIT; /* initialize global paramters to undefiend */ @@ -458,6 +461,7 @@ lnet_ni_alloc_common(struct lnet_net *net, char *iface) spin_lock_init(&ni->ni_lock); INIT_LIST_HEAD(&ni->ni_netlist); INIT_LIST_HEAD(&ni->ni_recovery); + LNetInvalidateMDHandle(&ni->ni_ping_mdh); ni->ni_refs = cfs_percpt_alloc(lnet_cpt_table(), sizeof(*ni->ni_refs[0])); if (ni->ni_refs == NULL) @@ -481,7 +485,6 @@ lnet_ni_alloc_common(struct lnet_net *net, char *iface) else ni->ni_net_ns = NULL; - ni->ni_last_alive = ktime_get_real_seconds(); ni->ni_state = LNET_NI_STATE_INIT; list_add_tail(&ni->ni_netlist, &net->net_ni_added); @@ -1244,7 +1247,7 @@ lnet_parse_route (char *str, int *im_a_router) continue; } - rc = lnet_add_route(net, hops, nid, priority); + rc = lnet_add_route(net, hops, nid, priority, 1); if (rc != 0 && rc != -EEXIST && rc != -EHOSTUNREACH) { CERROR("Can't create route " "to %s via %s\n", @@ -1609,68 +1612,61 @@ lnet_ipaddr_free_enumeration(__u32 *ipaddrs, int nip) } static int -lnet_ipaddr_enumerate (__u32 **ipaddrsp) +lnet_ipaddr_enumerate(u32 **ipaddrsp) { - int up; - __u32 netmask; - __u32 *ipaddrs; - __u32 *ipaddrs2; - int nip; - char **ifnames; - int nif = lnet_ipif_enumerate(&ifnames); - int i; - int rc; - - if (nif <= 0) - return nif; - - LIBCFS_ALLOC(ipaddrs, nif * sizeof(*ipaddrs)); - if (ipaddrs == NULL) { - CERROR("Can't allocate ipaddrs[%d]\n", nif); - lnet_ipif_free_enumeration(ifnames, nif); + struct net_device *dev; + u32 *ipaddrs; + int nalloc = 64; + int nip = 0; + + LIBCFS_ALLOC(ipaddrs, nalloc * sizeof(*ipaddrs)); + if (!ipaddrs) { + CERROR("Can't allocate ipaddrs[%d]\n", nalloc); return -ENOMEM; } - for (i = nip = 0; i < nif; i++) { - if (!strcmp(ifnames[i], "lo")) + rtnl_lock(); + for_each_netdev(&init_net, dev) { + struct in_device *in_dev; + + if (strcmp(dev->name, "lo") == 0) continue; - rc = lnet_ipif_query(ifnames[i], &up, - &ipaddrs[nip], &netmask); - if (rc != 0) { - CWARN("Can't query interface %s: %d\n", - ifnames[i], rc); + if (!(dev_get_flags(dev) & IFF_UP)) { + CWARN("Ignoring interface %s: it's down\n", dev->name); continue; } - if (!up) { - CWARN("Ignoring interface %s: it's down\n", - ifnames[i]); + in_dev = __in_dev_get_rtnl(dev); + if (!in_dev) { + CWARN("Interface %s has no IPv4 status.\n", dev->name); continue; } - nip++; - } - - lnet_ipif_free_enumeration(ifnames, nif); + if (nip >= nalloc) { + u32 *ipaddrs2; - if (nip == nif) { - *ipaddrsp = ipaddrs; - } else { - if (nip > 0) { - LIBCFS_ALLOC(ipaddrs2, nip * sizeof(*ipaddrs2)); - if (ipaddrs2 == NULL) { + nalloc += nalloc; + ipaddrs2 = krealloc(ipaddrs, nalloc * sizeof(*ipaddrs2), + GFP_KERNEL); + if (!ipaddrs2) { + kfree(ipaddrs); CERROR("Can't allocate ipaddrs[%d]\n", nip); - nip = -ENOMEM; - } else { - memcpy(ipaddrs2, ipaddrs, - nip * sizeof(*ipaddrs)); - *ipaddrsp = ipaddrs2; - rc = nip; + return -ENOMEM; } + ipaddrs = ipaddrs2; } - lnet_ipaddr_free_enumeration(ipaddrs, nif); + + for_primary_ifa(in_dev) + if (strcmp(ifa->ifa_label, dev->name) == 0) { + ipaddrs[nip++] = ifa->ifa_local; + break; + } + endfor_ifa(in_dev); } + rtnl_unlock(); + + *ipaddrsp = ipaddrs; return nip; }